Browse Source

staging: fbtft: fbtft-bus: Fix checkpatch warning

Fix checkpatch.pl warning:
Block comments use * on subsequent lines
Block comments use a trailing */ on a separate line

Signed-off-by: Anson Jacob <ansonjacob.aj@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Anson Jacob 9 years ago
parent
commit
b2ac4a9270
1 changed files with 2 additions and 1 deletions
  1. 2 1
      drivers/staging/fbtft/fbtft-bus.c

+ 2 - 1
drivers/staging/fbtft/fbtft-bus.c

@@ -92,7 +92,8 @@ void fbtft_write_reg8_bus9(struct fbtft_par *par, int len, ...)
 
 
 	if (par->spi && (par->spi->bits_per_word == 8)) {
 	if (par->spi && (par->spi->bits_per_word == 8)) {
 		/* we're emulating 9-bit, pad start of buffer with no-ops
 		/* we're emulating 9-bit, pad start of buffer with no-ops
-		   (assuming here that zero is a no-op) */
+		 * (assuming here that zero is a no-op)
+		 */
 		pad = (len % 4) ? 4 - (len % 4) : 0;
 		pad = (len % 4) ? 4 - (len % 4) : 0;
 		for (i = 0; i < pad; i++)
 		for (i = 0; i < pad; i++)
 			*buf++ = 0x000;
 			*buf++ = 0x000;