Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: panel: fix block comment usage

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>

authored by

Alex Wilson and committed by
Greg Kroah-Hartman
881bf281 7f44cb0b

+8 -4
+8 -4
drivers/staging/panel/panel.c
··· 781 781 schedule_timeout_interruptible(msecs_to_jiffies(ms)); 782 782 } 783 783 784 - /* send a serial byte to the LCD panel. The caller is responsible for locking 785 - if needed. */ 784 + /* 785 + * send a serial byte to the LCD panel. The caller is responsible for locking 786 + * if needed. 787 + */ 786 788 static void lcd_send_serial(int byte) 787 789 { 788 790 int bit; 789 791 790 - /* the data bit is set on D0, and the clock on STROBE. 791 - * LCD reads D0 on STROBE's rising edge. */ 792 + /* 793 + * the data bit is set on D0, and the clock on STROBE. 794 + * LCD reads D0 on STROBE's rising edge. 795 + */ 792 796 for (bit = 0; bit < 8; bit++) { 793 797 bits.cl = BIT_CLR; /* CLK low */ 794 798 panel_set_bits();