Commit 0728b01c authored by Aya Mahfouz's avatar Aya Mahfouz Committed by Greg Kroah-Hartman

staging: fbtft: fix braces {} are not necessary for single statement blocks

This patch fixes the following checkpatch.pl warning:
braces {} are not necessary for single statement blocks
Signed-off-by: default avatarAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bedc844d
...@@ -69,9 +69,8 @@ static void write_reg8_bus8(struct fbtft_par *par, int len, ...) ...@@ -69,9 +69,8 @@ static void write_reg8_bus8(struct fbtft_par *par, int len, ...)
if (unlikely(par->debug & DEBUG_WRITE_REGISTER)) { if (unlikely(par->debug & DEBUG_WRITE_REGISTER)) {
va_start(args, len); va_start(args, len);
for (i = 0; i < len; i++) { for (i = 0; i < len; i++)
buf[i] = (u8)va_arg(args, unsigned int); buf[i] = (u8)va_arg(args, unsigned int);
}
va_end(args); va_end(args);
fbtft_par_dbg_hex(DEBUG_WRITE_REGISTER, par, par->info->device, u8, buf, len, "%s: ", __func__); fbtft_par_dbg_hex(DEBUG_WRITE_REGISTER, par, par->info->device, u8, buf, len, "%s: ", __func__);
} }
...@@ -91,9 +90,8 @@ static void write_reg8_bus8(struct fbtft_par *par, int len, ...) ...@@ -91,9 +90,8 @@ static void write_reg8_bus8(struct fbtft_par *par, int len, ...)
if (len) { if (len) {
i = len; i = len;
while (i--) { while (i--)
*buf++ = (u8)va_arg(args, unsigned int); *buf++ = (u8)va_arg(args, unsigned int);
}
ret = par->fbtftops.write(par, par->buf, len * (sizeof(u8))); ret = par->fbtftops.write(par, par->buf, len * (sizeof(u8)));
if (ret < 0) { if (ret < 0) {
va_end(args); va_end(args);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment