|
@@ -1105,13 +1105,13 @@ void rtl92ee_tx_polling(struct ieee80211_hw *hw, u8 hw_queue)
|
|
|
}
|
|
|
|
|
|
u32 rtl92ee_rx_command_packet(struct ieee80211_hw *hw,
|
|
|
- struct rtl_stats status,
|
|
|
+ const struct rtl_stats *status,
|
|
|
struct sk_buff *skb)
|
|
|
{
|
|
|
u32 result = 0;
|
|
|
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
|
|
|
|
|
- switch (status.packet_report_type) {
|
|
|
+ switch (status->packet_report_type) {
|
|
|
case NORMAL_RX:
|
|
|
result = 0;
|
|
|
break;
|
|
@@ -1121,7 +1121,7 @@ u32 rtl92ee_rx_command_packet(struct ieee80211_hw *hw,
|
|
|
break;
|
|
|
default:
|
|
|
RT_TRACE(rtlpriv, COMP_RECV, DBG_TRACE,
|
|
|
- "Unknown packet type %d\n", status.packet_report_type);
|
|
|
+ "Unknown packet type %d\n", status->packet_report_type);
|
|
|
break;
|
|
|
}
|
|
|
|