Explorar el Código

gpio: mockup: tweak line breaks

Minor readability tweak: prefer breaking the lines in a way where the
second part is longer than the first.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Bartosz Golaszewski hace 7 años
padre
commit
2a9d742c26
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. 4 4
      drivers/gpio/gpio-mockup.c

+ 4 - 4
drivers/gpio/gpio-mockup.c

@@ -88,16 +88,16 @@ static int gpio_mockup_get(struct gpio_chip *gc, unsigned int offset)
 	return chip->lines[offset].value;
 	return chip->lines[offset].value;
 }
 }
 
 
-static void gpio_mockup_set(struct gpio_chip *gc, unsigned int offset,
-			    int value)
+static void gpio_mockup_set(struct gpio_chip *gc,
+			    unsigned int offset, int value)
 {
 {
 	struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
 	struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
 
 
 	chip->lines[offset].value = !!value;
 	chip->lines[offset].value = !!value;
 }
 }
 
 
-static int gpio_mockup_dirout(struct gpio_chip *gc, unsigned int offset,
-			      int value)
+static int gpio_mockup_dirout(struct gpio_chip *gc,
+			      unsigned int offset, int value)
 {
 {
 	struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
 	struct gpio_mockup_chip *chip = gpiochip_get_data(gc);