diff options
author | Laurent Navet <laurent.navet@gmail.com> | 2013-03-20 13:15:57 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-03-27 16:05:15 +0100 |
commit | e83507b763541cbbdf5a9e047c69755fec52aed9 (patch) | |
tree | 9cbee733501463e67c2f2225802a09d333c90ecd /drivers/gpio/gpio-omap.c | |
parent | f4dcd2d9417c2909362d2b42f038ecf1cdf86834 (diff) | |
download | op-kernel-dev-e83507b763541cbbdf5a9e047c69755fec52aed9.zip op-kernel-dev-e83507b763541cbbdf5a9e047c69755fec52aed9.tar.gz |
gpio: gpio-omap.c: fix checkpatch error
Fix :
gpio/gpio-omap.c:697: ERROR: space required before the open parenthesis '('
Signed-off-by: Laurent Navet <laurent.navet@gmail.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-omap.c')
-rw-r--r-- | drivers/gpio/gpio-omap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c index 0d30c7a..352f994 100644 --- a/drivers/gpio/gpio-omap.c +++ b/drivers/gpio/gpio-omap.c @@ -703,7 +703,7 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc) if (WARN_ON(!isr_reg)) goto exit; - while(1) { + while (1) { u32 isr_saved, level_mask = 0; u32 enabled; |