Commit 46928cc6 authored by Roman Kiryanov's avatar Roman Kiryanov Committed by Greg Kroah-Hartman

platform: goldfish: pipe: Add blank lines to separate struct members

To improve readability and to be consistent with other
struct members.
Signed-off-by: default avatarRoman Kiryanov <rkir@google.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 25b97d57
...@@ -130,11 +130,13 @@ struct goldfish_pipe_dev_buffers { ...@@ -130,11 +130,13 @@ struct goldfish_pipe_dev_buffers {
struct goldfish_pipe { struct goldfish_pipe {
/* pipe ID - index into goldfish_pipe_dev::pipes array */ /* pipe ID - index into goldfish_pipe_dev::pipes array */
u32 id; u32 id;
/* The wake flags pipe is waiting for /* The wake flags pipe is waiting for
* Note: not protected with any lock, uses atomic operations * Note: not protected with any lock, uses atomic operations
* and barriers to make it thread-safe. * and barriers to make it thread-safe.
*/ */
unsigned long flags; unsigned long flags;
/* wake flags host have signalled, /* wake flags host have signalled,
* - protected by goldfish_pipe_dev::lock * - protected by goldfish_pipe_dev::lock
*/ */
...@@ -158,6 +160,7 @@ struct goldfish_pipe { ...@@ -158,6 +160,7 @@ struct goldfish_pipe {
/* A wake queue for sleeping until host signals an event */ /* A wake queue for sleeping until host signals an event */
wait_queue_head_t wake_queue; wait_queue_head_t wake_queue;
/* Pointer to the parent goldfish_pipe_dev instance */ /* Pointer to the parent goldfish_pipe_dev instance */
struct goldfish_pipe_dev *dev; struct goldfish_pipe_dev *dev;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment