mirror of https://gitee.com/openkylin/linux.git
iwlwifi: replace 0x8086 with PCI_VENDOR_ID_INTEL
Replace 0x8086 with PCI_VENDOR_ID_INTEL for PCI_DEVICE declaration. Signed-off-by: Zhu Yi <yi.zhu@intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
1f21ad2a4f
commit
3567c11d72
|
@ -2279,8 +2279,8 @@ void iwl_hw_cancel_deferred_work(struct iwl_priv *priv)
|
|||
}
|
||||
|
||||
struct pci_device_id iwl_hw_card_ids[] = {
|
||||
{PCI_DEVICE(0x8086, 0x4222)},
|
||||
{PCI_DEVICE(0x8086, 0x4227)},
|
||||
{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4222)},
|
||||
{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4227)},
|
||||
{0}
|
||||
};
|
||||
|
||||
|
|
|
@ -4690,8 +4690,8 @@ void iwl_hw_cancel_deferred_work(struct iwl_priv *priv)
|
|||
}
|
||||
|
||||
struct pci_device_id iwl_hw_card_ids[] = {
|
||||
{PCI_DEVICE(0x8086, 0x4229)},
|
||||
{PCI_DEVICE(0x8086, 0x4230)},
|
||||
{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4229)},
|
||||
{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4230)},
|
||||
{0}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue