diff options
author | Varka Bhadram <varkabhadram@gmail.com> | 2014-09-20 20:44:30 +0530 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-09-24 10:56:54 +0200 |
commit | 0397375dc936142fa0b96b525064306f4c2e312d (patch) | |
tree | d5b1e1749b2431aa4ba5152ab024ccd06a051af5 /drivers/gpio | |
parent | 295494af0695bc190e6b939df1036af898c2856f (diff) | |
download | op-kernel-dev-0397375dc936142fa0b96b525064306f4c2e312d.zip op-kernel-dev-0397375dc936142fa0b96b525064306f4c2e312d.tar.gz |
gpio: ks8695: fix switch case indentation
Signed-off-by: Varka Bhadram <varkab@cdac.in>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-ks8695.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/gpio/gpio-ks8695.c b/drivers/gpio/gpio-ks8695.c index 464a83d..ba2d2f1 100644 --- a/drivers/gpio/gpio-ks8695.c +++ b/drivers/gpio/gpio-ks8695.c @@ -265,16 +265,16 @@ static int ks8695_gpio_show(struct seq_file *s, void *unused) seq_printf(s, "EXT%i ", i); switch ((ctrl & intmask[i]) >> (4 * i)) { - case IOPC_TM_LOW: - seq_printf(s, "(Low)"); break; - case IOPC_TM_HIGH: - seq_printf(s, "(High)"); break; - case IOPC_TM_RISING: - seq_printf(s, "(Rising)"); break; - case IOPC_TM_FALLING: - seq_printf(s, "(Falling)"); break; - case IOPC_TM_EDGE: - seq_printf(s, "(Edges)"); break; + case IOPC_TM_LOW: + seq_printf(s, "(Low)"); break; + case IOPC_TM_HIGH: + seq_printf(s, "(High)"); break; + case IOPC_TM_RISING: + seq_printf(s, "(Rising)"); break; + case IOPC_TM_FALLING: + seq_printf(s, "(Falling)"); break; + case IOPC_TM_EDGE: + seq_printf(s, "(Edges)"); break; } } else |