From: Abanoub Sameh Date: Tue, 21 Jul 2020 14:51:04 +0000 (+0200) Subject: gpio: sch: Add a blank line between declaration and code X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4941b8dedb3f33dcca5c6aef919ea518ff8947ce;p=linux.git gpio: sch: Add a blank line between declaration and code Added a lined between a declaration and other statements according to the kernel coding style. Signed-off-by: Abanoub Sameh Signed-off-by: Andy Shevchenko --- diff --git a/drivers/gpio/gpio-sch.c b/drivers/gpio/gpio-sch.c index d7cade67717b9..3a1b1adb08c6c 100644 --- a/drivers/gpio/gpio-sch.c +++ b/drivers/gpio/gpio-sch.c @@ -89,6 +89,7 @@ static int sch_gpio_direction_in(struct gpio_chip *gc, unsigned int gpio_num) static int sch_gpio_get(struct gpio_chip *gc, unsigned int gpio_num) { struct sch_gpio *sch = gpiochip_get_data(gc); + return sch_gpio_reg_get(sch, gpio_num, GLV); }