Commit 0ab66e6d authored by Sara Sharon's avatar Sara Sharon Committed by Emmanuel Grumbach

iwlwifi: mvm: add wide firmware command support for debug triggers

Add support for extended command id in triggers handling.
Extended command id header contains group id in addition to command id.
Signed-off-by: default avatarSara Sharon <sara.sharon@intel.com>
Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
parent 1230b16b
...@@ -703,12 +703,13 @@ static inline void iwl_mvm_rx_check_trigger(struct iwl_mvm *mvm, ...@@ -703,12 +703,13 @@ static inline void iwl_mvm_rx_check_trigger(struct iwl_mvm *mvm,
if (!cmds_trig->cmds[i].cmd_id) if (!cmds_trig->cmds[i].cmd_id)
break; break;
if (cmds_trig->cmds[i].cmd_id != pkt->hdr.cmd) if (cmds_trig->cmds[i].cmd_id != pkt->hdr.cmd ||
cmds_trig->cmds[i].group_id != pkt->hdr.group_id)
continue; continue;
iwl_mvm_fw_dbg_collect_trig(mvm, trig, iwl_mvm_fw_dbg_collect_trig(mvm, trig,
"CMD 0x%02x received", "CMD 0x%02x.%02x received",
pkt->hdr.cmd); pkt->hdr.group_id, pkt->hdr.cmd);
break; break;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment