mirror of https://gitee.com/openkylin/linux.git
staging: fbtft: line over 80 characters
Fix the checkpatch.pl warning WARNING: line over 80 characters Signed-off-by: Bhagyashri Dighole <digholebhagyashri@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
84c45d5f3b
commit
3f8e5931fe
|
@ -74,7 +74,8 @@ static void write_reg8_bus8(struct fbtft_par *par, int len, ...)
|
|||
for (i = 0; i < len; i++)
|
||||
buf[i] = (u8)va_arg(args, unsigned int);
|
||||
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__);
|
||||
}
|
||||
|
||||
va_start(args, len);
|
||||
|
|
|
@ -671,7 +671,8 @@ static int flexfb_probe_common(struct spi_device *sdev,
|
|||
break;
|
||||
case 9:
|
||||
if (regwidth == 16) {
|
||||
dev_err(dev, "argument 'regwidth': %d is not supported with buswidth=%d and SPI.\n", regwidth, buswidth);
|
||||
dev_err(dev, "argument 'regwidth': %d is not supported with buswidth=%d and SPI.\n",
|
||||
regwidth, buswidth);
|
||||
return -EINVAL;
|
||||
}
|
||||
par->fbtftops.write_register = fbtft_write_reg8_bus9;
|
||||
|
|
Loading…
Reference in New Issue