|
@@ -1223,8 +1223,10 @@ int iwl_tx_agg_stop(struct iwl_priv *priv , const u8 *ra, u16 tid)
|
|
|
|
|
|
sta_id = iwl_find_station(priv, ra);
|
|
|
|
|
|
- if (sta_id == IWL_INVALID_STATION)
|
|
|
+ if (sta_id == IWL_INVALID_STATION) {
|
|
|
+ IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid);
|
|
|
return -ENXIO;
|
|
|
+ }
|
|
|
|
|
|
if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_ON)
|
|
|
IWL_WARN(priv, "Stopping AGG while state not IWL_AGG_ON\n");
|