mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-29 17:15:25 +00:00
wifi: iwlwifi: dump: Update check for UMAC valid FW address
The error dump base address check for UMAC need an update based on current hardware. Signed-off-by: Mukesh Sisodiya <mukesh.sisodiya@intel.com> Signed-off-by: Gregory Greenman <gregory.greenman@intel.com> Link: https://lore.kernel.org/r/20221205102808.e4b7fc650144.I46103baf400bb4ae69d82738e402a3903b17c030@changeid
This commit is contained in:
parent
5933b8620a
commit
b2f20cf289
@ -122,6 +122,9 @@ static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait,
|
|||||||
u32 version = iwl_fw_lookup_notif_ver(mvm->fw, LEGACY_GROUP,
|
u32 version = iwl_fw_lookup_notif_ver(mvm->fw, LEGACY_GROUP,
|
||||||
UCODE_ALIVE_NTFY, 0);
|
UCODE_ALIVE_NTFY, 0);
|
||||||
u32 i;
|
u32 i;
|
||||||
|
struct iwl_trans *trans = mvm->trans;
|
||||||
|
enum iwl_device_family device_family = trans->trans_cfg->device_family;
|
||||||
|
|
||||||
|
|
||||||
if (version == 6) {
|
if (version == 6) {
|
||||||
struct iwl_alive_ntf_v6 *palive;
|
struct iwl_alive_ntf_v6 *palive;
|
||||||
@ -230,7 +233,8 @@ static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait,
|
|||||||
|
|
||||||
if (umac_error_table) {
|
if (umac_error_table) {
|
||||||
if (umac_error_table >=
|
if (umac_error_table >=
|
||||||
mvm->trans->cfg->min_umac_error_event_table) {
|
mvm->trans->cfg->min_umac_error_event_table ||
|
||||||
|
device_family >= IWL_DEVICE_FAMILY_BZ) {
|
||||||
iwl_fw_umac_set_alive_err_table(mvm->trans,
|
iwl_fw_umac_set_alive_err_table(mvm->trans,
|
||||||
umac_error_table);
|
umac_error_table);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user