Browse Source

wlcore: Remove wl pointer from wl_sta structure

This field was added to wl_sta struct to get hw in situations
where it was not given to driver by mac80211. In our case,
get_expected_throughput op did not send hw to driver.

This patch reverts the change, as it is no longer needed due to commit
4fdbc67a25ce ("mac80211: call get_expected_throughput only after adding
station") as hw is now sent as a parameter.

Signed-off-by: Maxim Altshul <maxim.altshul@ti.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Maxim Altshul 9 years ago
parent
commit
d8c872b57e

+ 0 - 1
drivers/net/wireless/ti/wlcore/main.c

@@ -4986,7 +4986,6 @@ static int wl12xx_sta_add(struct wl1271 *wl,
 		return ret;
 		return ret;
 
 
 	wl_sta = (struct wl1271_station *)sta->drv_priv;
 	wl_sta = (struct wl1271_station *)sta->drv_priv;
-	wl_sta->wl = wl;
 	hlid = wl_sta->hlid;
 	hlid = wl_sta->hlid;
 
 
 	ret = wl12xx_cmd_add_peer(wl, wlvif, sta, hlid);
 	ret = wl12xx_cmd_add_peer(wl, wlvif, sta, hlid);

+ 0 - 1
drivers/net/wireless/ti/wlcore/wlcore_i.h

@@ -347,7 +347,6 @@ struct wl1271_station {
 	 * Used in both AP and STA mode.
 	 * Used in both AP and STA mode.
 	 */
 	 */
 	u64 total_freed_pkts;
 	u64 total_freed_pkts;
-	struct wl1271 *wl;
 };
 };
 
 
 struct wl12xx_vif {
 struct wl12xx_vif {