gpiolib: Indent entry values of enum gpio_lookup_flags
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 10 Apr 2019 15:39:15 +0000 (18:39 +0300)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 23 Apr 2019 08:54:42 +0000 (10:54 +0200)
Indent entry values in the enum gpio_lookup_flags for better readability.

No functional change.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
include/linux/gpio/machine.h

index 69673be..a0a9816 100644 (file)
@@ -6,14 +6,14 @@
 #include <linux/list.h>
 
 enum gpio_lookup_flags {
-       GPIO_ACTIVE_HIGH = (0 << 0),
-       GPIO_ACTIVE_LOW = (1 << 0),
-       GPIO_OPEN_DRAIN = (1 << 1),
-       GPIO_OPEN_SOURCE = (1 << 2),
-       GPIO_PERSISTENT = (0 << 3),
-       GPIO_TRANSITORY = (1 << 3),
-       GPIO_PULL_UP = (1 << 4),
-       GPIO_PULL_DOWN = (1 << 5),
+       GPIO_ACTIVE_HIGH                = (0 << 0),
+       GPIO_ACTIVE_LOW                 = (1 << 0),
+       GPIO_OPEN_DRAIN                 = (1 << 1),
+       GPIO_OPEN_SOURCE                = (1 << 2),
+       GPIO_PERSISTENT                 = (0 << 3),
+       GPIO_TRANSITORY                 = (1 << 3),
+       GPIO_PULL_UP                    = (1 << 4),
+       GPIO_PULL_DOWN                  = (1 << 5),
 };
 
 /**