aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/wlan-ng/wlan_compat.h
diff options
context:
space:
mode:
authorMoritz Muehlenhoff <jmm@debian.org>2009-02-05 23:55:54 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-03 14:53:21 -0700
commitea045ba02086c008505ab1a6a7a60856072be65f (patch)
treefdfdb0bcc532838004da71b392cdb58e4c6c35b8 /drivers/staging/wlan-ng/wlan_compat.h
parent40a67411debb802a4e8d03f0c435a7495a8fc8c4 (diff)
Staging: wlan-ng: Remove WLAN_INCLUDE_DEBUG and some related, mostly unused
Signed-off-by: Moritz Muehlenhoff <jmm@debian.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/wlan-ng/wlan_compat.h')
-rw-r--r--drivers/staging/wlan-ng/wlan_compat.h28
1 files changed, 5 insertions, 23 deletions
diff --git a/drivers/staging/wlan-ng/wlan_compat.h b/drivers/staging/wlan-ng/wlan_compat.h
index 60aaccb11e3..6ea47fc02ca 100644
--- a/drivers/staging/wlan-ng/wlan_compat.h
+++ b/drivers/staging/wlan-ng/wlan_compat.h
@@ -48,34 +48,20 @@
#ifndef _WLAN_COMPAT_H
#define _WLAN_COMPAT_H
+#undef netdevice_t
+typedef struct net_device netdevice_t;
+
/*=============================================================*/
/*------ OS Portability Macros --------------------------------*/
/*=============================================================*/
-#ifndef WLAN_DBVAR
-#define WLAN_DBVAR wlan_debug
-#endif
#include <linux/hardirq.h>
#include <linux/ctype.h>
-#if defined(WLAN_INCLUDE_DEBUG)
- #define WLAN_HEX_DUMP( l, x, p, n) if( WLAN_DBVAR >= (l) ){ \
- int __i__; \
- printk(KERN_DEBUG x ":"); \
- for( __i__=0; __i__ < (n); __i__++) \
- printk( " %02x", ((u8*)(p))[__i__]); \
- printk("\n"); }
-
- #define WLAN_LOG_DEBUG(l,x,args...) if ( WLAN_DBVAR >= (l)) printk(KERN_DEBUG "%s(%lu): " x , __func__, (preempt_count() & PREEMPT_MASK), ##args );
-#else
- #define WLAN_HEX_DUMP( l, s, p, n)
+#define WLAN_HEX_DUMP( l, s, p, n)
- #define WLAN_LOG_DEBUG(l, s, args...)
-#endif
-
-#undef netdevice_t
-typedef struct net_device netdevice_t;
+#define WLAN_LOG_DEBUG(l, s, args...)
/*=============================================================*/
/*--- General Macros ------------------------------------------*/
@@ -108,8 +94,4 @@ typedef struct net_device netdevice_t;
/*--- Variables -----------------------------------------------*/
/*=============================================================*/
-#ifdef WLAN_INCLUDE_DEBUG
-extern int wlan_debug;
-#endif
-
#endif /* _WLAN_COMPAT_H */