diff options
author | Moritz Muehlenhoff <jmm@debian.org> | 2009-02-01 13:29:01 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:53:20 -0700 |
commit | 4c9d98d9f67e4ea2cdba136273513f131022da35 (patch) | |
tree | dc4ce32db089ae70866d94196dab3c4617543444 | |
parent | 8521258c7697dd6ba9b03376967fe664dc09db11 (diff) | |
download | blackbird-op-linux-4c9d98d9f67e4ea2cdba136273513f131022da35.tar.gz blackbird-op-linux-4c9d98d9f67e4ea2cdba136273513f131022da35.zip |
Staging: wlan-ng: Remove dead/unused code from prism2sta.c
Signed-off-by: Moritz Muehlenhoff <jmm@debian.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/wlan-ng/prism2mgmt.h | 4 | ||||
-rw-r--r-- | drivers/staging/wlan-ng/prism2sta.c | 83 |
2 files changed, 0 insertions, 87 deletions
diff --git a/drivers/staging/wlan-ng/prism2mgmt.h b/drivers/staging/wlan-ng/prism2mgmt.h index 88e8bd041810..5e326b318159 100644 --- a/drivers/staging/wlan-ng/prism2mgmt.h +++ b/drivers/staging/wlan-ng/prism2mgmt.h @@ -75,10 +75,6 @@ u32 prism2sta_ifstate(wlandevice_t *wlandev, u32 ifstate); void -prism2sta_ev_dtim(wlandevice_t *wlandev); -void -prism2sta_ev_infdrop(wlandevice_t *wlandev); -void prism2sta_ev_info(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf); void prism2sta_ev_txexc(wlandevice_t *wlandev, u16 status); diff --git a/drivers/staging/wlan-ng/prism2sta.c b/drivers/staging/wlan-ng/prism2sta.c index 249d657ca1d3..5b3db5c28c1a 100644 --- a/drivers/staging/wlan-ng/prism2sta.c +++ b/drivers/staging/wlan-ng/prism2sta.c @@ -168,34 +168,6 @@ static void prism2sta_inf_psusercnt( /*================================================================*/ /* Function Definitions */ -/*---------------------------------------------------------------- -* dmpmem -* -* Debug utility function to dump memory to the kernel debug log. -* -* Arguments: -* buf ptr data we want dumped -* len length of data -* -* Returns: -* nothing -* Side effects: -* -* Call context: -* process thread -* interrupt -----------------------------------------------------------------*/ -inline void dmpmem(void *buf, int n) -{ - int c; - for ( c= 0; c < n; c++) { - if ( (c % 16) == 0 ) printk(KERN_DEBUG"dmp[%d]: ", c); - printk("%02x ", ((u8*)buf)[c]); - if ( (c % 16) == 15 ) printk("\n"); - } - if ( (c % 16) != 0 ) printk("\n"); -} - /*---------------------------------------------------------------- * prism2sta_open @@ -1200,9 +1172,6 @@ static void prism2sta_inf_chinforesults(wlandevice_t *wlandev, hw->channel_info.results.scanchannels = hfa384x2host_16(inf->info.chinforesult.scanchannels); -#if 0 - memcpy(&inf->info.chinforesult, &hw->channel_info.results, sizeof(hfa384x_ChInfoResult_t)); -#endif for (i=0, n=0; i<HFA384x_CHINFORESULT_MAX; i++) { if (hw->channel_info.results.scanchannels & (1<<i)) { @@ -1786,58 +1755,6 @@ static void prism2sta_inf_psusercnt(wlandevice_t *wlandev, } /*---------------------------------------------------------------- -* prism2sta_ev_dtim -* -* Handles the DTIM early warning event. -* -* Arguments: -* wlandev wlan device structure -* -* Returns: -* nothing -* -* Side effects: -* -* Call context: -* interrupt -----------------------------------------------------------------*/ -void prism2sta_ev_dtim(wlandevice_t *wlandev) -{ -#if 0 - hfa384x_t *hw = (hfa384x_t *)wlandev->priv; -#endif - WLAN_LOG_DEBUG(3, "DTIM event, currently unhandled.\n"); - return; -} - - -/*---------------------------------------------------------------- -* prism2sta_ev_infdrop -* -* Handles the InfDrop event. -* -* Arguments: -* wlandev wlan device structure -* -* Returns: -* nothing -* -* Side effects: -* -* Call context: -* interrupt -----------------------------------------------------------------*/ -void prism2sta_ev_infdrop(wlandevice_t *wlandev) -{ -#if 0 - hfa384x_t *hw = (hfa384x_t *)wlandev->priv; -#endif - WLAN_LOG_DEBUG(3, "Info frame dropped due to card mem low.\n"); - return; -} - - -/*---------------------------------------------------------------- * prism2sta_ev_info * * Handles the Info event. |