/*================================================================*/
/* System Includes */
-#define WLAN_DBVAR prism2_debug
#include <linux/version.h>
#define ROUNDUP64(a) (((a)+63)&~63)
-/*================================================================*/
-/* Local Types */
-
-/*================================================================*/
-/* Local Static Definitions */
-extern int prism2_debug;
-
/*================================================================*/
/* Local Function Declarations */
module_param(wlan_wext_write, int, 0644);
MODULE_PARM_DESC(wlan_wext_write, "enable write wireless extensions");
-#ifdef WLAN_INCLUDE_DEBUG
-int wlan_debug=0;
-module_param(wlan_debug, int, 0644);
-MODULE_PARM_DESC(wlan_debug, "p80211 debug level");
-#endif
-
/*================================================================*/
/* Function Definitions */
/*================================================================*/
/* System Includes */
-#define WLAN_DBVAR prism2_debug
-
#include <linux/if_arp.h>
#include <linux/module.h>
/*=============================================================*/
/*------ Static variable externs ------------------------------*/
-extern int prism2_debug;
extern int prism2_reset_holdtime;
extern int prism2_reset_settletime;
/*=============================================================*/
/*================================================================*/
/* System Includes */
-#define WLAN_DBVAR prism2_debug
#include <linux/version.h>
/*================================================================*/
/* System Includes */
-#define WLAN_DBVAR prism2_debug
#include <linux/version.h>
#include <linux/module.h>
static int prism2_doreset=0; /* Do a reset at init? */
-#ifdef WLAN_INCLUDE_DEBUG
-int prism2_debug=0;
-module_param( prism2_debug, int, 0644);
-MODULE_PARM_DESC(prism2_debug, "prism2 debugging");
-#endif
-
module_param( prism2_doreset, int, 0644);
MODULE_PARM_DESC(prism2_doreset, "Issue a reset on initialization");
#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 ------------------------------------------*/
/*--- Variables -----------------------------------------------*/
/*=============================================================*/
-#ifdef WLAN_INCLUDE_DEBUG
-extern int wlan_debug;
-#endif
-
#endif /* _WLAN_COMPAT_H */