Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.97 Remove upstream patch: generic/backport-6.6/001-powerpc-kernel-Fix-pcc_save_regs-inclusion.patch[1] Manually rebased patch: bcm53xx/patches-6.6/180-usb-xhci-add-support-for-performing-fake-doorbell.patch[2] All other patches are automatically refreshed. [1] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.97&id=8a7ac2737211451b8b98657b919c4c4e0a4c0c2f [2] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.97&id=7609899eb6b70b536123eb58eeab27c764752b82 Signed-off-by: Shiji Yang <yangshiji66@outlook.com> Co-authored-by: John Audia <therealgraysky@proton.me> Tested-by: Konstantin Demin <rockdrilla@gmail.com> Link: https://github.com/openwrt/openwrt/pull/19317 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From d6b2b694dd536d16566424c395d5642783ed6f34 Mon Sep 17 00:00:00 2001
|
|
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
|
|
Date: Mon, 29 Apr 2024 17:02:43 +0300
|
|
Subject: [PATCH] xhci: pci: Use PCI_VENDOR_ID_RENESAS
|
|
|
|
Instead of plain hexadecimal, use already defined PCI_VENDOR_ID_RENESAS.
|
|
|
|
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
|
|
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
|
|
Link: https://lore.kernel.org/r/20240429140245.3955523-17-mathias.nyman@linux.intel.com
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/usb/host/xhci-pci.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/usb/host/xhci-pci.c
|
|
+++ b/drivers/usb/host/xhci-pci.c
|
|
@@ -991,10 +991,10 @@ static const struct xhci_driver_data ren
|
|
|
|
/* PCI driver selection metadata; PCI hotplugging uses this */
|
|
static const struct pci_device_id pci_ids[] = {
|
|
- { PCI_DEVICE(0x1912, 0x0014),
|
|
+ { PCI_DEVICE(PCI_VENDOR_ID_RENESAS, 0x0014),
|
|
.driver_data = (unsigned long)&reneses_data,
|
|
},
|
|
- { PCI_DEVICE(0x1912, 0x0015),
|
|
+ { PCI_DEVICE(PCI_VENDOR_ID_RENESAS, 0x0015),
|
|
.driver_data = (unsigned long)&reneses_data,
|
|
},
|
|
/* handle any USB 3.0 xHCI controller */
|