diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-11-17 14:39:03 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-11-18 10:33:41 -0800 |
commit | d32b20fc7dad87ac95fcc73fca3606c0db85f210 (patch) | |
tree | 2d22225ea3aa82d083767f9eebfb9bfd13a15d31 /arch | |
parent | 72f962fc7bc00f5ff4991912b889f87b464f7f1a (diff) |
omap: fix unlikely(x) < y
The closing parenthesis was not in the right location.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Cc: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/plat-omap/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/gpio.c b/arch/arm/plat-omap/gpio.c index 71ebd7fcfea..7c345b757df 100644 --- a/arch/arm/plat-omap/gpio.c +++ b/arch/arm/plat-omap/gpio.c @@ -373,7 +373,7 @@ static inline int gpio_valid(int gpio) static int check_gpio(int gpio) { - if (unlikely(gpio_valid(gpio)) < 0) { + if (unlikely(gpio_valid(gpio) < 0)) { printk(KERN_ERR "omap-gpio: invalid GPIO %d\n", gpio); dump_stack(); return -1; |