]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: panel: fix block comment usage
authorAlex Wilson <alex.david.wilson@gmail.com>
Fri, 31 Jul 2015 17:08:29 +0000 (11:08 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 31 Jul 2015 23:18:43 +0000 (16:18 -0700)
Fixed two coding style warnings concerning multiline comments.

Signed-off-by: Alex Wilson <alex.david.wilson@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/panel/panel.c

index bda208da514e3b5b96da3ad06d7beeda659a8651..3e9ee7ee6be2a20d40ce01a4c203c24635c89f7c 100644 (file)
@@ -781,14 +781,18 @@ static void long_sleep(int ms)
                schedule_timeout_interruptible(msecs_to_jiffies(ms));
 }
 
-/* send a serial byte to the LCD panel. The caller is responsible for locking
-   if needed. */
+/*
+ * send a serial byte to the LCD panel. The caller is responsible for locking
+ * if needed.
+ */
 static void lcd_send_serial(int byte)
 {
        int bit;
 
-       /* the data bit is set on D0, and the clock on STROBE.
-        * LCD reads D0 on STROBE's rising edge. */
+       /*
+        * the data bit is set on D0, and the clock on STROBE.
+        * LCD reads D0 on STROBE's rising edge.
+        */
        for (bit = 0; bit < 8; bit++) {
                bits.cl = BIT_CLR;      /* CLK low */
                panel_set_bits();