The macros WILC_IS_ERR, WILC_ERRORCHECK, WILC_ERRORREPORT,
WILC_NULLCHECK and WILC_CATCH are not used and may be removed.

Signed-off-by: Mike Rapoport <mike.rapop...@gmail.com>
---
 drivers/staging/wilc1000/wilc_errorsupport.h | 27 ---------------------------
 1 file changed, 27 deletions(-)

diff --git a/drivers/staging/wilc1000/wilc_errorsupport.h 
b/drivers/staging/wilc1000/wilc_errorsupport.h
index 6012ec4..f9727f0 100644
--- a/drivers/staging/wilc1000/wilc_errorsupport.h
+++ b/drivers/staging/wilc1000/wilc_errorsupport.h
@@ -35,31 +35,4 @@
 #define WILC_UNSUPPORTED_VERSION       -115
 #define WILC_FILE_EOF                  -116
 
-
-
-#define WILC_IS_ERR(__status__) (__status__ < WILC_SUCCESS)
-
-#define WILC_ERRORCHECK(__status__) do { \
-               if (WILC_IS_ERR(__status__)) { \
-                       PRINT_ER("PRINT_ER(%d)\n", __status__); \
-                       goto ERRORHANDLER; \
-               } \
-} while (0)
-
-#define WILC_ERRORREPORT(__status__, __err__) do { \
-               PRINT_ER("PRINT_ER(%d)\n", __err__); \
-               __status__ = __err__; \
-               goto ERRORHANDLER; \
-} while (0)
-
-#define  WILC_NULLCHECK(__status__, __ptr__)   do { \
-               if (__ptr__ == NULL) { \
-                       WILC_ERRORREPORT(__status__, WILC_NULL_PTR); \
-               } \
-} while (0)
-
-#define WILC_CATCH(__status__) \
-ERRORHANDLER: \
-       if (WILC_IS_ERR(__status__)) \
-
 #endif
-- 
2.1.0

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to