mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 15:10:38 +00:00
platform: goldfish: pipe: Add blank lines to separate struct members
To improve readability and to be consistent with other struct members. Signed-off-by: Roman Kiryanov <rkir@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
25b97d5706
commit
46928cc6ff
@ -130,11 +130,13 @@ struct goldfish_pipe_dev_buffers {
|
||||
struct goldfish_pipe {
|
||||
/* pipe ID - index into goldfish_pipe_dev::pipes array */
|
||||
u32 id;
|
||||
|
||||
/* The wake flags pipe is waiting for
|
||||
* Note: not protected with any lock, uses atomic operations
|
||||
* and barriers to make it thread-safe.
|
||||
*/
|
||||
unsigned long flags;
|
||||
|
||||
/* wake flags host have signalled,
|
||||
* - protected by goldfish_pipe_dev::lock
|
||||
*/
|
||||
@ -158,6 +160,7 @@ struct goldfish_pipe {
|
||||
|
||||
/* A wake queue for sleeping until host signals an event */
|
||||
wait_queue_head_t wake_queue;
|
||||
|
||||
/* Pointer to the parent goldfish_pipe_dev instance */
|
||||
struct goldfish_pipe_dev *dev;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user