platform: goldfish: pipe: Fix comments to fit 80 columns
authorRoman Kiryanov <rkir@google.com>
Mon, 27 Aug 2018 18:22:56 +0000 (11:22 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 14 Sep 2018 13:31:30 +0000 (15:31 +0200)
Some comment lines are longer than 80 symbols.

Signed-off-by: Roman Kiryanov <rkir@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/platform/goldfish/goldfish_pipe.c

index 2da5675..6094ca4 100644 (file)
@@ -85,7 +85,10 @@ enum PipePollFlags {
        PIPE_POLL_HUP   = 1 << 2
 };
 
-/* Possible status values used to signal errors - see goldfish_pipe_error_convert */
+/*
+ * Possible status values used to signal errors
+ * see: goldfish_pipe_error_convert
+ */
 enum PipeErrors {
        PIPE_ERROR_INVAL  = -1,
        PIPE_ERROR_AGAIN  = -2,
@@ -150,9 +153,9 @@ struct goldfish_pipe_command;
 
 /* A per-pipe command structure, shared with the host */
 struct goldfish_pipe_command {
-       s32 cmd;                /* PipeCmdCode, guest -> host */
-       s32 id;                 /* pipe id, guest -> host */
-       s32 status;             /* command execution status, host -> guest */
+       s32 cmd;        /* PipeCmdCode, guest -> host */
+       s32 id;         /* pipe id, guest -> host */
+       s32 status;     /* command execution status, host -> guest */
        s32 reserved;   /* to pad to 64-bit boundary */
        union {
                /* Parameters for PIPE_CMD_{READ,WRITE} */