summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2019-04-10 11:39:15 -0400
committerLinus Walleij <linus.walleij@linaro.org>2019-04-23 04:54:42 -0400
commit4050586b2beec8603d25ad7fc7ba15670143e6ba (patch)
treedb5939de98b6fbc652921725ce6df7ac22b3de0a
parent12c7a4fc47e4720e96205030b1f0dd6bd2746a3f (diff)
gpiolib: Indent entry values of enum gpio_lookup_flags
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>
-rw-r--r--include/linux/gpio/machine.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/linux/gpio/machine.h b/include/linux/gpio/machine.h
index 69673be10213..a0a981676490 100644
--- a/include/linux/gpio/machine.h
+++ b/include/linux/gpio/machine.h
@@ -6,14 +6,14 @@
6#include <linux/list.h> 6#include <linux/list.h>
7 7
8enum gpio_lookup_flags { 8enum gpio_lookup_flags {
9 GPIO_ACTIVE_HIGH = (0 << 0), 9 GPIO_ACTIVE_HIGH = (0 << 0),
10 GPIO_ACTIVE_LOW = (1 << 0), 10 GPIO_ACTIVE_LOW = (1 << 0),
11 GPIO_OPEN_DRAIN = (1 << 1), 11 GPIO_OPEN_DRAIN = (1 << 1),
12 GPIO_OPEN_SOURCE = (1 << 2), 12 GPIO_OPEN_SOURCE = (1 << 2),
13 GPIO_PERSISTENT = (0 << 3), 13 GPIO_PERSISTENT = (0 << 3),
14 GPIO_TRANSITORY = (1 << 3), 14 GPIO_TRANSITORY = (1 << 3),
15 GPIO_PULL_UP = (1 << 4), 15 GPIO_PULL_UP = (1 << 4),
16 GPIO_PULL_DOWN = (1 << 5), 16 GPIO_PULL_DOWN = (1 << 5),
17}; 17};
18 18
19/** 19/**