diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2018-07-12 20:36:42 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-07-13 11:17:35 +0300 |
commit | 1c22a252b3ded10d06acecdf8fb71f9dd8005c4f (patch) | |
tree | 55d726f69fe6bfd6126186129837cf827d9a7cea /drivers/gpio/gpiolib.c | |
parent | 9506755633d0b32ef76f67c345000178e9b0dfc4 (diff) | |
download | linux-1c22a252b3ded10d06acecdf8fb71f9dd8005c4f.tar.xz |
gpiolib: Join one line back for better readability
One line in gpiolib_dbg_show() still fits 80 characters, so,
join it to be like that in order to increase readability.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpiolib.c')
-rw-r--r-- | drivers/gpio/gpiolib.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index cbc071423f30..2e2a6f8db405 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c @@ -4278,9 +4278,7 @@ static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev) seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s", gpio, gdesc->name ? gdesc->name : "", gdesc->label, is_out ? "out" : "in ", - chip->get - ? (chip->get(chip, i) ? "hi" : "lo") - : "? ", + chip->get ? (chip->get(chip, i) ? "hi" : "lo") : "? ", is_irq ? "IRQ" : " "); seq_printf(s, "\n"); } |