aboutsummaryrefslogtreecommitdiffstats
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
parent40a67411debb802a4e8d03f0c435a7495a8fc8c4 (diff)
downloadkernel_samsung_smdk4412-ea045ba02086c008505ab1a6a7a60856072be65f.zip
kernel_samsung_smdk4412-ea045ba02086c008505ab1a6a7a60856072be65f.tar.gz
kernel_samsung_smdk4412-ea045ba02086c008505ab1a6a7a60856072be65f.tar.bz2
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>
-rw-r--r--drivers/staging/wlan-ng/hfa384x_usb.c8
-rw-r--r--drivers/staging/wlan-ng/p80211netdev.c6
-rw-r--r--drivers/staging/wlan-ng/prism2mgmt.c2
-rw-r--r--drivers/staging/wlan-ng/prism2mgmt.h1
-rw-r--r--drivers/staging/wlan-ng/prism2mib.c1
-rw-r--r--drivers/staging/wlan-ng/prism2sta.c7
-rw-r--r--drivers/staging/wlan-ng/wlan_compat.h28
7 files changed, 5 insertions, 48 deletions
diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c
index 60820da..036518e 100644
--- a/drivers/staging/wlan-ng/hfa384x_usb.c
+++ b/drivers/staging/wlan-ng/hfa384x_usb.c
@@ -112,7 +112,6 @@
/*================================================================*/
/* System Includes */
-#define WLAN_DBVAR prism2_debug
#include <linux/version.h>
@@ -171,13 +170,6 @@ typedef enum cmd_mode CMD_MODE;
#define ROUNDUP64(a) (((a)+63)&~63)
/*================================================================*/
-/* Local Types */
-
-/*================================================================*/
-/* Local Static Definitions */
-extern int prism2_debug;
-
-/*================================================================*/
/* Local Function Declarations */
#ifdef DEBUG_USB
diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c
index 6b98361..4f314b9 100644
--- a/drivers/staging/wlan-ng/p80211netdev.c
+++ b/drivers/staging/wlan-ng/p80211netdev.c
@@ -135,12 +135,6 @@ int wlan_wext_write = 1;
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 */
diff --git a/drivers/staging/wlan-ng/prism2mgmt.c b/drivers/staging/wlan-ng/prism2mgmt.c
index fe4e7ff..1205522 100644
--- a/drivers/staging/wlan-ng/prism2mgmt.c
+++ b/drivers/staging/wlan-ng/prism2mgmt.c
@@ -59,8 +59,6 @@
/*================================================================*/
/* System Includes */
-#define WLAN_DBVAR prism2_debug
-
#include <linux/if_arp.h>
#include <linux/module.h>
diff --git a/drivers/staging/wlan-ng/prism2mgmt.h b/drivers/staging/wlan-ng/prism2mgmt.h
index 5e326b3..b38b16d 100644
--- a/drivers/staging/wlan-ng/prism2mgmt.h
+++ b/drivers/staging/wlan-ng/prism2mgmt.h
@@ -64,7 +64,6 @@
/*=============================================================*/
/*------ Static variable externs ------------------------------*/
-extern int prism2_debug;
extern int prism2_reset_holdtime;
extern int prism2_reset_settletime;
/*=============================================================*/
diff --git a/drivers/staging/wlan-ng/prism2mib.c b/drivers/staging/wlan-ng/prism2mib.c
index 08460af..438c2c2 100644
--- a/drivers/staging/wlan-ng/prism2mib.c
+++ b/drivers/staging/wlan-ng/prism2mib.c
@@ -52,7 +52,6 @@
/*================================================================*/
/* System Includes */
-#define WLAN_DBVAR prism2_debug
#include <linux/version.h>
diff --git a/drivers/staging/wlan-ng/prism2sta.c b/drivers/staging/wlan-ng/prism2sta.c
index 5b3db5c..b1e4a99 100644
--- a/drivers/staging/wlan-ng/prism2sta.c
+++ b/drivers/staging/wlan-ng/prism2sta.c
@@ -52,7 +52,6 @@
/*================================================================*/
/* System Includes */
-#define WLAN_DBVAR prism2_debug
#include <linux/version.h>
#include <linux/module.h>
@@ -115,12 +114,6 @@ int prism2_reset_settletime=100; /* Reset settle time in ms */
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");
diff --git a/drivers/staging/wlan-ng/wlan_compat.h b/drivers/staging/wlan-ng/wlan_compat.h
index 60aaccb..6ea47fc 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 */