In case there is a FW bug where the BAID value in the
metadata is not properly initialized we hit the warning for
every RX packet.
Change it to warn once and add elaborate message.
Signed-off-by: Sara Sharon <sara.sharon@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
                return false;
 
        /* no sta yet */
-       if (WARN_ON(IS_ERR_OR_NULL(sta)))
+       if (WARN_ONCE(IS_ERR_OR_NULL(sta),
+                     "Got valid BAID without a valid station assigned\n"))
                return false;
 
        mvm_sta = iwl_mvm_sta_from_mac80211(sta);