Skip to content

Commit d6b2b69

Browse files
andy-shevgregkh
authored andcommitted
xhci: pci: Use PCI_VENDOR_ID_RENESAS
Instead of plain hexadecimal, use already defined PCI_VENDOR_ID_RENESAS. Signed-off-by: Andy Shevchenko <[email protected]> Signed-off-by: Mathias Nyman <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 2f8a5b4 commit d6b2b69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/usb/host/xhci-pci.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -880,10 +880,10 @@ static const struct xhci_driver_data reneses_data = {
880880

881881
/* PCI driver selection metadata; PCI hotplugging uses this */
882882
static const struct pci_device_id pci_ids[] = {
883-
{ PCI_DEVICE(0x1912, 0x0014),
883+
{ PCI_DEVICE(PCI_VENDOR_ID_RENESAS, 0x0014),
884884
.driver_data = (unsigned long)&reneses_data,
885885
},
886-
{ PCI_DEVICE(0x1912, 0x0015),
886+
{ PCI_DEVICE(PCI_VENDOR_ID_RENESAS, 0x0015),
887887
.driver_data = (unsigned long)&reneses_data,
888888
},
889889
/* handle any USB 3.0 xHCI controller */

0 commit comments

Comments
 (0)