staging: rtl8192e: Remove dead code from rtl8192_set_chan()
Signed-off-by: Mike McCormack <mikem@ring3k.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
a6b1d95908
commit
61d0e67af6
|
@ -25,7 +25,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#undef LOOP_TEST
|
|
||||||
#undef RX_DONT_PASS_UL
|
#undef RX_DONT_PASS_UL
|
||||||
#undef DEBUG_EPROM
|
#undef DEBUG_EPROM
|
||||||
#undef DEBUG_RX_VERBOSE
|
#undef DEBUG_RX_VERBOSE
|
||||||
|
@ -840,35 +839,13 @@ void rtl8192_update_msr(struct net_device *dev)
|
||||||
void rtl8192_set_chan(struct net_device *dev,short ch)
|
void rtl8192_set_chan(struct net_device *dev,short ch)
|
||||||
{
|
{
|
||||||
struct r8192_priv *priv = (struct r8192_priv *)ieee80211_priv(dev);
|
struct r8192_priv *priv = (struct r8192_priv *)ieee80211_priv(dev);
|
||||||
RT_TRACE(COMP_RF, "=====>%s()====ch:%d\n", __FUNCTION__, ch);
|
|
||||||
priv->chan = ch;
|
priv->chan = ch;
|
||||||
#if 0
|
|
||||||
if(priv->ieee80211->iw_mode == IW_MODE_ADHOC ||
|
|
||||||
priv->ieee80211->iw_mode == IW_MODE_MASTER){
|
|
||||||
|
|
||||||
priv->ieee80211->link_state = WLAN_LINK_ASSOCIATED;
|
/* need to implement rf set channel here WB */
|
||||||
priv->ieee80211->master_chan = ch;
|
|
||||||
rtl8192_update_beacon_ch(dev);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* this hack should avoid frame TX during channel setting*/
|
|
||||||
|
|
||||||
|
|
||||||
// tx = read_nic_dword(dev,TX_CONF);
|
|
||||||
// tx &= ~TX_LOOPBACK_MASK;
|
|
||||||
|
|
||||||
#ifndef LOOP_TEST
|
|
||||||
//TODO
|
|
||||||
// write_nic_dword(dev,TX_CONF, tx |( TX_LOOPBACK_MAC<<TX_LOOPBACK_SHIFT));
|
|
||||||
|
|
||||||
//need to implement rf set channel here WB
|
|
||||||
|
|
||||||
if (priv->rf_set_chan)
|
if (priv->rf_set_chan)
|
||||||
priv->rf_set_chan(dev, priv->chan);
|
priv->rf_set_chan(dev, priv->chan);
|
||||||
// mdelay(10);
|
|
||||||
// write_nic_dword(dev,TX_CONF,tx | (TX_LOOPBACK_NONE<<TX_LOOPBACK_SHIFT));
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void rtl8192_rx_enable(struct net_device *dev)
|
void rtl8192_rx_enable(struct net_device *dev)
|
||||||
|
|
Loading…
Reference in New Issue