staging: fbtft: line over 80 characters
authorBhagyashri Dighole <digholebhagyashri@gmail.com>
Wed, 13 Mar 2019 08:15:09 +0000 (13:45 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Mar 2019 06:06:01 +0000 (07:06 +0100)
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>
drivers/staging/fbtft/fb_ssd1331.c
drivers/staging/fbtft/flexfb.c

index 9f54fe28d51194b8d0d88f200281f2447b10b258..4cfe9f8535d0fedb2ce877fd347480e3b01fd733 100644 (file)
@@ -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);
index b91b459367821a1bcd68db6fbb302e8748f850bf..3747321011fa6f8ba259c01a028b5c5bc45baf94 100644 (file)
@@ -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;