Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

rtlwifi: rtl8188ee: Convert driver to use new rtl_phy_scan_operation_backup() routine

Now that rtl_phy_scan_operation_backup() exists, convert rtl8188ee to use it.
Routine rtl88e_phy_scan_operation_backup() is no longer used and is removed.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Larry Finger and committed by
John W. Linville
d41200ad 3fc01656

+2 -31
-28
drivers/net/wireless/rtlwifi/rtl8188ee/phy.c
··· 1136 1136 &bw40_pwr[0], channel); 1137 1137 } 1138 1138 1139 - void rtl88e_phy_scan_operation_backup(struct ieee80211_hw *hw, u8 operation) 1140 - { 1141 - struct rtl_priv *rtlpriv = rtl_priv(hw); 1142 - struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); 1143 - enum io_type iotype; 1144 - 1145 - if (!is_hal_stop(rtlhal)) { 1146 - switch (operation) { 1147 - case SCAN_OPT_BACKUP: 1148 - iotype = IO_CMD_PAUSE_DM_BY_SCAN; 1149 - rtlpriv->cfg->ops->set_hw_reg(hw, 1150 - HW_VAR_IO_CMD, 1151 - (u8 *)&iotype); 1152 - break; 1153 - case SCAN_OPT_RESTORE: 1154 - iotype = IO_CMD_RESUME_DM_BY_SCAN; 1155 - rtlpriv->cfg->ops->set_hw_reg(hw, 1156 - HW_VAR_IO_CMD, 1157 - (u8 *)&iotype); 1158 - break; 1159 - default: 1160 - RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, 1161 - "Unknown Scan Backup operation.\n"); 1162 - break; 1163 - } 1164 - } 1165 - } 1166 - 1167 1139 void rtl88e_phy_set_bw_mode_callback(struct ieee80211_hw *hw) 1168 1140 { 1169 1141 struct rtl_priv *rtlpriv = rtl_priv(hw);
-2
drivers/net/wireless/rtlwifi/rtl8188ee/phy.h
··· 217 217 extern void rtl88e_phy_get_txpower_level(struct ieee80211_hw *hw, 218 218 long *powerlevel); 219 219 extern void rtl88e_phy_set_txpower_level(struct ieee80211_hw *hw, u8 channel); 220 - extern void rtl88e_phy_scan_operation_backup(struct ieee80211_hw *hw, 221 - u8 operation); 222 220 extern void rtl88e_phy_set_bw_mode_callback(struct ieee80211_hw *hw); 223 221 extern void rtl88e_phy_set_bw_mode(struct ieee80211_hw *hw, 224 222 enum nl80211_channel_type ch_type);
+2 -1
drivers/net/wireless/rtlwifi/rtl8188ee/sw.c
··· 30 30 #include "../wifi.h" 31 31 #include "../core.h" 32 32 #include "../pci.h" 33 + #include "../base.h" 33 34 #include "reg.h" 34 35 #include "def.h" 35 36 #include "phy.h" ··· 245 244 .set_bw_mode = rtl88e_phy_set_bw_mode, 246 245 .switch_channel = rtl88e_phy_sw_chnl, 247 246 .dm_watchdog = rtl88e_dm_watchdog, 248 - .scan_operation_backup = rtl88e_phy_scan_operation_backup, 247 + .scan_operation_backup = rtl_phy_scan_operation_backup, 249 248 .set_rf_power_state = rtl88e_phy_set_rf_power_state, 250 249 .led_control = rtl88ee_led_control, 251 250 .set_desc = rtl88ee_set_desc,