mt76: use PCI_VENDOR_ID_MEDIATEK to avoid open coded
authorRyder Lee <ryder.lee@mediatek.com>
Tue, 2 Feb 2021 13:57:59 +0000 (21:57 +0800)
committerFelix Fietkau <nbd@nbd.name>
Sun, 11 Apr 2021 16:50:39 +0000 (18:50 +0200)
Use PCI standard defines.

Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7603/pci.c
drivers/net/wireless/mediatek/mt76/mt7615/pci.c
drivers/net/wireless/mediatek/mt76/mt76x0/pci.c
drivers/net/wireless/mediatek/mt76/mt76x2/pci.c
drivers/net/wireless/mediatek/mt76/mt7921/pci.c

index 06fa28f..aa6cb66 100644 (file)
@@ -7,7 +7,7 @@
 #include "mt7603.h"
 
 static const struct pci_device_id mt76pci_device_table[] = {
-       { PCI_DEVICE(0x14c3, 0x7603) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7603) },
        { },
 };
 
index 71487f5..11f169c 100644 (file)
@@ -13,9 +13,9 @@
 #include "mcu.h"
 
 static const struct pci_device_id mt7615_pci_device_table[] = {
-       { PCI_DEVICE(0x14c3, 0x7615) },
-       { PCI_DEVICE(0x14c3, 0x7663) },
-       { PCI_DEVICE(0x14c3, 0x7611) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7615) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7663) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7611) },
        { },
 };
 
index 02d0aa0..5847f94 100644 (file)
@@ -221,9 +221,9 @@ mt76x0e_remove(struct pci_dev *pdev)
 }
 
 static const struct pci_device_id mt76x0e_device_table[] = {
-       { PCI_DEVICE(0x14c3, 0x7610) },
-       { PCI_DEVICE(0x14c3, 0x7630) },
-       { PCI_DEVICE(0x14c3, 0x7650) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7610) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7630) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7650) },
        { },
 };
 
index ecaf85b..adf288e 100644 (file)
@@ -10,9 +10,9 @@
 #include "mt76x2.h"
 
 static const struct pci_device_id mt76x2e_device_table[] = {
-       { PCI_DEVICE(0x14c3, 0x7662) },
-       { PCI_DEVICE(0x14c3, 0x7612) },
-       { PCI_DEVICE(0x14c3, 0x7602) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7662) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7612) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7602) },
        { },
 };
 
index 5570b4a..33ed952 100644 (file)
@@ -13,7 +13,7 @@
 #include "../trace.h"
 
 static const struct pci_device_id mt7921_pci_device_table[] = {
-       { PCI_DEVICE(0x14c3, 0x7961) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x7961) },
        { },
 };