net: macb: Use predefined PCI vendor ID constant
The PCI vendor ID for Cadence is defined in pci_ids.h. Use it. While at it, move to PCI_VDEVICE() macro and usual pattern for PCI device ID. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://patch.msgid.link/20240913125146.3628751-1-andriy.shevchenko@linux.intel.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
9c699a8f3b
commit
6503734916
@ -19,8 +19,7 @@
|
||||
#define PCI_DRIVER_NAME "macb_pci"
|
||||
#define PLAT_DRIVER_NAME "macb"
|
||||
|
||||
#define CDNS_VENDOR_ID 0x17cd
|
||||
#define CDNS_DEVICE_ID 0xe007
|
||||
#define PCI_DEVICE_ID_CDNS_MACB 0xe007
|
||||
|
||||
#define GEM_PCLK_RATE 50000000
|
||||
#define GEM_HCLK_RATE 50000000
|
||||
@ -117,7 +116,7 @@ static void macb_remove(struct pci_dev *pdev)
|
||||
}
|
||||
|
||||
static const struct pci_device_id dev_id_table[] = {
|
||||
{ PCI_DEVICE(CDNS_VENDOR_ID, CDNS_DEVICE_ID), },
|
||||
{ PCI_VDEVICE(CDNS, PCI_DEVICE_ID_CDNS_MACB) },
|
||||
{ 0, }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user