net: marvell: prestera: pci: use device-id defines
authorOleksandr Mazur <oleksandr.mazur@plvision.eu>
Wed, 9 Nov 2022 22:25:20 +0000 (00:25 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 11 Nov 2022 10:52:54 +0000 (10:52 +0000)
Use defines with proper device names instead of device-id in pci-devices
listing.

Signed-off-by: Oleksandr Mazur <oleksandr.mazur@plvision.eu>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/prestera/prestera_pci.c

index 59470d9..1463996 100644 (file)
@@ -184,6 +184,10 @@ struct prestera_fw_regs {
 #define PRESTERA_FW_CMD_DEFAULT_WAIT_MS        30000
 #define PRESTERA_FW_READY_WAIT_MS      20000
 
+#define PRESTERA_DEV_ID_AC3X_98DX_55   0xC804
+#define PRESTERA_DEV_ID_AC3X_98DX_65   0xC80C
+#define PRESTERA_DEV_ID_ALDRIN2                0xCC1E
+
 struct prestera_fw_evtq {
        u8 __iomem *addr;
        size_t len;
@@ -870,9 +874,9 @@ static void prestera_pci_remove(struct pci_dev *pdev)
 }
 
 static const struct pci_device_id prestera_pci_devices[] = {
-       { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0xC804) },
-       { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0xC80C) },
-       { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0xCC1E) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, PRESTERA_DEV_ID_AC3X_98DX_55) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, PRESTERA_DEV_ID_AC3X_98DX_65) },
+       { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, PRESTERA_DEV_ID_ALDRIN2) },
        { }
 };
 MODULE_DEVICE_TABLE(pci, prestera_pci_devices);