diff options
author | Ana Rey <anarey@gmail.com> | 2014-03-13 17:54:55 +0100 |
---|---|---|
committer | Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> | 2014-03-16 17:46:55 -0700 |
commit | a5cb9b391d99bd9fb37891daa0cb52cc5f7b76bc (patch) | |
tree | 38dd136d1fcc03312b4707605910b841bc0f7efd /drivers | |
parent | 6a1bf3a5d134c0a48594ca5a29433eca3ebe55a1 (diff) |
staging: rtl8192u: Deleted 'rtl8192_set_mode' function in r8192U_core.c
This patch delete the 'rtl8192_set_mode' function that is not used in
anywhere in the driver.
Fix the following sparse warning in r8192U_core.c
drivers/staging/rtl8192u/r8192U_core.c:692:6: warning: symbol 'rtl8192_set_mode' was not declared. Should it be static?
Signed-off-by: Ana Rey <anarey@gmail.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/rtl8192u/r8192U_core.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c index 47489bdbc207..9432b68102f9 100644 --- a/drivers/staging/rtl8192u/r8192U_core.c +++ b/drivers/staging/rtl8192u/r8192U_core.c @@ -689,24 +689,6 @@ void dump_eprom(struct net_device *dev) RT_TRACE(COMP_EPROM, "EEPROM addr %x : %x", i, eprom_read(dev, i)); } - -/**************************************************************************** - ------------------------------HW STUFF--------------------------- -*****************************************************************************/ - - -void rtl8192_set_mode(struct net_device *dev, int mode) -{ - u8 ecmd; - read_nic_byte(dev, EPROM_CMD, &ecmd); - ecmd = ecmd & ~EPROM_CMD_OPERATING_MODE_MASK; - ecmd = ecmd | (mode<<EPROM_CMD_OPERATING_MODE_SHIFT); - ecmd = ecmd & ~EPROM_CS_BIT; - ecmd = ecmd & ~EPROM_CK_BIT; - write_nic_byte(dev, EPROM_CMD, ecmd); -} - - void rtl8192_update_msr(struct net_device *dev) { struct r8192_priv *priv = ieee80211_priv(dev); |