mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 07:51:16 -04:00
wifi: iwlwifi: fix 6005N/SFF match
That mask should never have been 0xFFFF (mask also doesn't make sense in that case) but rather 0xF000 since I combined a few entries with 0xC___. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Link: https://patch.msgid.link/20250505215513.63bdbd67b72d.Id9b93b695c91117967dfd339c76bdfcd2872bee6@changeid Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
This commit is contained in:
committed by
Miri Korenblit
parent
beda255463
commit
a2ec30065c
@@ -669,7 +669,7 @@ VISIBLE_IF_IWLWIFI_KUNIT const struct iwl_dev_info iwl_dev_info_table[] = {
|
||||
DEVICE(0x0085), SUBDEV_MASKED(0x6, 0xF)),
|
||||
|
||||
IWL_DEV_INFO(iwl6005_n_cfg, iwl6005_2agn_sff_name,
|
||||
DEVICE(0x0082), SUBDEV_MASKED(0xC000, 0xFFFF)),
|
||||
DEVICE(0x0082), SUBDEV_MASKED(0xC000, 0xF000)),
|
||||
IWL_DEV_INFO(iwl6005_n_cfg, iwl6005_2agn_d_name,
|
||||
DEVICE(0x0082), SUBDEV(0x4820)),
|
||||
IWL_DEV_INFO(iwl6005_n_cfg, iwl6005_2agn_mow1_name,
|
||||
|
||||
Reference in New Issue
Block a user