diff options
author | Laurent Navet <laurent.navet@gmail.com> | 2013-03-20 08:15:57 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-03-27 11:05:15 -0400 |
commit | e83507b763541cbbdf5a9e047c69755fec52aed9 (patch) | |
tree | 9cbee733501463e67c2f2225802a09d333c90ecd /drivers/gpio | |
parent | f4dcd2d9417c2909362d2b42f038ecf1cdf86834 (diff) |
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')
-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 0d30c7acf0c7..352f9949c054 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) | |||
703 | if (WARN_ON(!isr_reg)) | 703 | if (WARN_ON(!isr_reg)) |
704 | goto exit; | 704 | goto exit; |
705 | 705 | ||
706 | while(1) { | 706 | while (1) { |
707 | u32 isr_saved, level_mask = 0; | 707 | u32 isr_saved, level_mask = 0; |
708 | u32 enabled; | 708 | u32 enabled; |
709 | 709 | ||