Blackfin arch: add missing gpio error handling to make sure we roll back requests...
authorMichael Hennerich <michael.hennerich@analog.com>
Tue, 24 Jul 2007 10:03:45 +0000 (18:03 +0800)
committerBryan Wu <bryan.wu@analog.com>
Tue, 24 Jul 2007 10:03:45 +0000 (18:03 +0800)
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
arch/blackfin/kernel/bfin_gpio.c
arch/blackfin/mach-bf548/gpio.c

index b818a8d..979cf79 100644 (file)
@@ -711,9 +711,15 @@ int peripheral_request_list(unsigned short per[], const char *label)
        int ret;
 
        for (cnt = 0; per[cnt] != 0; cnt++) {
+
                ret = peripheral_request(per[cnt], label);
-               if (ret < 0)
-                       return ret;
+
+               if (ret < 0) {
+                       for ( ; cnt > 0; cnt--) {
+                               peripheral_free(per[cnt - 1]);
+                       }
+               return ret;
+               }
        }
 
        return 0;
index c073ab3..f3b9dea 100644 (file)
@@ -212,11 +212,18 @@ int peripheral_request_list(unsigned short per[], const char *label)
        int ret;
 
        for (cnt = 0; per[cnt] != 0; cnt++) {
+
                ret = peripheral_request(per[cnt], label);
-               if (ret < 0)
-                       return ret;
+
+               if (ret < 0) {
+                       for ( ; cnt > 0; cnt--) {
+                               peripheral_free(per[cnt - 1]);
+                       }
+               return ret;
+               }
        }
 
+
        return 0;
 }
 EXPORT_SYMBOL(peripheral_request_list);