]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: fbtft: fbtft-bus: Fix checkpatch warning
authorAnson Jacob <ansonjacob.aj@gmail.com>
Thu, 25 Aug 2016 15:27:19 +0000 (11:27 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Sep 2016 16:03:22 +0000 (18:03 +0200)
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>
drivers/staging/fbtft/fbtft-bus.c

index 83505bce628a959430eab0075f20a07eaab749d5..ec45043c08302286f83bd413075af5478e9a28f2 100644 (file)
@@ -92,7 +92,8 @@ void fbtft_write_reg8_bus9(struct fbtft_par *par, int len, ...)
 
        if (par->spi && (par->spi->bits_per_word == 8)) {
                /* 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;
                for (i = 0; i < pad; i++)
                        *buf++ = 0x000;