Re: [PATCH 1/6] omap: Fix Unlikely(x) y

2009-10-14 Thread Tony Lindgren
* Tony Lindgren t...@atomide.com [091013 17:21]:
 From: Roel Kluin roel.kl...@gmail.com
 
 The closing parenthesis was not on the right location.

Looks like this one is in the -mm now, so dropping from
mine.

Tony
 
 Signed-off-by: Roel Kluin roel.kl...@gmail.com
 Signed-off-by: Tony Lindgren t...@atomide.com
 ---
  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 71ebd7f..7c345b7 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;
 
 --
 To unsubscribe from this list: send the line unsubscribe linux-omap in
 the body of a message to majord...@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 1/6] omap: Fix Unlikely(x) y

2009-10-13 Thread Tony Lindgren
From: Roel Kluin roel.kl...@gmail.com

The closing parenthesis was not on the right location.

Signed-off-by: Roel Kluin roel.kl...@gmail.com
Signed-off-by: Tony Lindgren t...@atomide.com
---
 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 71ebd7f..7c345b7 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;

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html