]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: remove definition WILC_IS_ERR
authorLeo Kim <leo.kim@atmel.com>
Tue, 15 Sep 2015 02:53:35 +0000 (11:53 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Sep 2015 13:42:12 +0000 (06:42 -0700)
This patch removes the definition WILC_IS_ERR which is not used anymore.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_errorsupport.h

index 6012ec4dfce0d8a79186a365da97a265909ae572..8eb8150d5213786e23c7eea54645e42204416ee8 100644 (file)
 
 
 
-#define WILC_IS_ERR(__status__) (__status__ < WILC_SUCCESS)
 
 #define WILC_ERRORCHECK(__status__) do { \
-               if (WILC_IS_ERR(__status__)) { \
+               if (__status__ < WILC_SUCCESS) { \
                        PRINT_ER("PRINT_ER(%d)\n", __status__); \
                        goto ERRORHANDLER; \
                } \
@@ -60,6 +59,6 @@
 
 #define WILC_CATCH(__status__) \
 ERRORHANDLER: \
-       if (WILC_IS_ERR(__status__)) \
+       if (__status__ < WILC_SUCCESS) \
 
 #endif