diff options
author | Benedict Boerger <benedict.boerger@cs.tu-dortmund.de> | 2014-09-18 17:46:23 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-19 17:11:06 -0700 |
commit | 4af409f6c38029e1eda0a5e7bbf15e9b1b7d7fab (patch) | |
tree | 67fe478d6efcee87d35c7d3acdc93e7cf5908e0f /drivers/staging/rtl8192u | |
parent | 77baad9e4d71e75d7ad6ee83454113d4a6a7b04d (diff) |
staging: rtl8192u: delete unused function CAM_read_entry
Fix the sparse warning: symbol 'CAM_read_entry' was not declared. Should it be static?
The function CAM_read_entry is not used and therefore deleted.
Signed-off-by: Benedict Boerger <benedict.boerger@cs.tu-dortmund.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192u')
-rw-r--r-- | drivers/staging/rtl8192u/r8192U_core.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c index e8447b1c4048..2a09471ae4c2 100644 --- a/drivers/staging/rtl8192u/r8192U_core.c +++ b/drivers/staging/rtl8192u/r8192U_core.c @@ -3190,34 +3190,6 @@ RESET_START: } } -void CAM_read_entry(struct net_device *dev, u32 iIndex) -{ - u32 target_command = 0; - u32 target_content = 0; - u8 entry_i = 0; - u32 ulStatus; - s32 i = 100; - for (entry_i = 0; entry_i < CAM_CONTENT_COUNT; entry_i++) { - // polling bit, and No Write enable, and address - target_command = entry_i+CAM_CONTENT_COUNT*iIndex; - target_command = target_command | BIT31; - - //Check polling bit is clear - while ((i--) >= 0) { - read_nic_dword(dev, RWCAM, &ulStatus); - if (ulStatus & BIT31) - continue; - else - break; - } - write_nic_dword(dev, RWCAM, target_command); - RT_TRACE(COMP_SEC, "CAM_read_entry(): WRITE A0: %x \n", target_command); - read_nic_dword(dev, RCAMO, &target_content); - RT_TRACE(COMP_SEC, "CAM_read_entry(): WRITE A8: %x \n", target_content); - } - printk("\n"); -} - static void rtl819x_update_rxcounts(struct r8192_priv *priv, u32 *TotalRxBcnNum, u32 *TotalRxDataNum) { |