forked from Minki/linux
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>
This commit is contained in:
parent
a4f368dcaf
commit
b2ac4a9270
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user