]> git.dujemihanovic.xyz Git - linux.git/commitdiff
sub: cdns3: Use predefined PCI vendor ID constant
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 13 Sep 2024 13:17:10 +0000 (16:17 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 13 Sep 2024 13:39:06 +0000 (15:39 +0200)
The PCI vendor ID for Cadence is defined in pci_ids.h. Use it.
While at it, move to PCI_DEVICE() macro and usual pattern for
PCI class and device IDs.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20240913131710.3630560-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/cdns3/cdns3-pci-wrap.c
drivers/usb/cdns3/cdnsp-pci.c

index 1f6320d98a76ba37b03e928c9ae965c9d5a01272..591d149de8f3d9f509dfbecc3e92fc924a41ffa9 100644 (file)
@@ -37,8 +37,7 @@ struct cdns3_wrap {
 #define PCI_DRIVER_NAME                "cdns3-pci-usbss"
 #define PLAT_DRIVER_NAME       "cdns-usb3"
 
-#define CDNS_VENDOR_ID         0x17cd
-#define CDNS_DEVICE_ID         0x0100
+#define PCI_DEVICE_ID_CDNS_USB3        0x0100
 
 static struct pci_dev *cdns3_get_second_fun(struct pci_dev *pdev)
 {
@@ -190,7 +189,7 @@ static void cdns3_pci_remove(struct pci_dev *pdev)
 }
 
 static const struct pci_device_id cdns3_pci_ids[] = {
-       { PCI_DEVICE(CDNS_VENDOR_ID, CDNS_DEVICE_ID), },
+       { PCI_VDEVICE(CDNS, PCI_DEVICE_ID_CDNS_USB3) },
        { 0, }
 };
 
index 225540fc81ba11b69f4ecb7bc0bb2e7a680af9ec..2d05368a6745a1a4fcc166056c019aa4f151af06 100644 (file)
 #define PCI_DRIVER_NAME                "cdns-pci-usbssp"
 #define PLAT_DRIVER_NAME       "cdns-usbssp"
 
-#define CDNS_VENDOR_ID         0x17cd
-#define CDNS_DEVICE_ID         0x0200
-#define CDNS_DRD_ID            0x0100
-#define CDNS_DRD_IF            (PCI_CLASS_SERIAL_USB << 8 | 0x80)
+#define PCI_DEVICE_ID_CDNS_USB3                0x0100
+#define PCI_DEVICE_ID_CDNS_UDC         0x0200
+
+#define PCI_CLASS_SERIAL_USB_CDNS_USB3 (PCI_CLASS_SERIAL_USB << 8 | 0x80)
+#define PCI_CLASS_SERIAL_USB_CDNS_UDC  PCI_CLASS_SERIAL_USB_DEVICE
 
 static struct pci_dev *cdnsp_get_second_fun(struct pci_dev *pdev)
 {
@@ -40,10 +41,10 @@ static struct pci_dev *cdnsp_get_second_fun(struct pci_dev *pdev)
         * Platform has two function. The fist keeps resources for
         * Host/Device while the secon keeps resources for DRD/OTG.
         */
-       if (pdev->device == CDNS_DEVICE_ID)
-               return  pci_get_device(pdev->vendor, CDNS_DRD_ID, NULL);
-       else if (pdev->device == CDNS_DRD_ID)
-               return pci_get_device(pdev->vendor, CDNS_DEVICE_ID, NULL);
+       if (pdev->device == PCI_DEVICE_ID_CDNS_UDC)
+               return pci_get_device(pdev->vendor, PCI_DEVICE_ID_CDNS_USB3, NULL);
+       if (pdev->device == PCI_DEVICE_ID_CDNS_USB3)
+               return pci_get_device(pdev->vendor, PCI_DEVICE_ID_CDNS_UDC, NULL);
 
        return NULL;
 }
@@ -220,12 +221,12 @@ static const struct dev_pm_ops cdnsp_pci_pm_ops = {
 };
 
 static const struct pci_device_id cdnsp_pci_ids[] = {
-       { PCI_VENDOR_ID_CDNS, CDNS_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,
-         PCI_CLASS_SERIAL_USB_DEVICE, PCI_ANY_ID },
-       { PCI_VENDOR_ID_CDNS, CDNS_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,
-         CDNS_DRD_IF, PCI_ANY_ID },
-       { PCI_VENDOR_ID_CDNS, CDNS_DRD_ID, PCI_ANY_ID, PCI_ANY_ID,
-         CDNS_DRD_IF, PCI_ANY_ID },
+       { PCI_DEVICE(PCI_VENDOR_ID_CDNS, PCI_DEVICE_ID_CDNS_UDC),
+         .class = PCI_CLASS_SERIAL_USB_CDNS_UDC },
+       { PCI_DEVICE(PCI_VENDOR_ID_CDNS, PCI_DEVICE_ID_CDNS_UDC),
+         .class = PCI_CLASS_SERIAL_USB_CDNS_USB3 },
+       { PCI_DEVICE(PCI_VENDOR_ID_CDNS, PCI_DEVICE_ID_CDNS_USB3),
+         .class = PCI_CLASS_SERIAL_USB_CDNS_USB3 },
        { 0, }
 };