Skip to content

Commit 3db903a

Browse files
committed
Merge tag 'pci-v5.14-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
Pull PCI fixes from Bjorn Helgaas: - Add Rahul Tanwar as Intel LGM Gateway PCIe maintainer (Rahul Tanwar) - Add Jim Quinlan et al as Broadcom STB PCIe maintainers (Jim Quinlan) - Increase D3hot-to-D0 delay for AMD Renoir/Cezanne XHCI (Marcin Bachry) - Correct iomem_get_mapping() usage for legacy_mem sysfs (Krzysztof Wilczyński) * tag 'pci-v5.14-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci: PCI/sysfs: Use correct variable for the legacy_mem sysfs object PCI: Increase D3 delay for AMD Renoir/Cezanne XHCI MAINTAINERS: Add Jim Quinlan et al as Broadcom STB PCIe maintainers MAINTAINERS: Add Rahul Tanwar as Intel LGM Gateway PCIe maintainer
2 parents a27c75e + 045a927 commit 3db903a

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

MAINTAINERS

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3866,6 +3866,16 @@ L: [email protected]
38663866
S: Maintained
38673867
F: drivers/mtd/nand/raw/brcmnand/
38683868

3869+
BROADCOM STB PCIE DRIVER
3870+
M: Jim Quinlan <[email protected]>
3871+
M: Nicolas Saenz Julienne <[email protected]>
3872+
M: Florian Fainelli <[email protected]>
3873+
3874+
3875+
S: Maintained
3876+
F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3877+
F: drivers/pci/controller/pcie-brcmstb.c
3878+
38693879
BROADCOM SYSTEMPORT ETHERNET DRIVER
38703880
M: Florian Fainelli <[email protected]>
38713881
@@ -14430,6 +14440,13 @@ S: Maintained
1443014440
F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
1443114441
F: drivers/pci/controller/dwc/pcie-histb.c
1443214442

14443+
PCIE DRIVER FOR INTEL LGM GW SOC
14444+
M: Rahul Tanwar <[email protected]>
14445+
14446+
S: Maintained
14447+
F: Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14448+
F: drivers/pci/controller/dwc/pcie-intel-gw.c
14449+
1443314450
PCIE DRIVER FOR MEDIATEK
1443414451
M: Ryder Lee <[email protected]>
1443514452
M: Jianjun Wang <[email protected]>

drivers/pci/pci-sysfs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ void pci_create_legacy_files(struct pci_bus *b)
978978
b->legacy_mem->size = 1024*1024;
979979
b->legacy_mem->attr.mode = 0600;
980980
b->legacy_mem->mmap = pci_mmap_legacy_mem;
981-
b->legacy_io->mapping = iomem_get_mapping();
981+
b->legacy_mem->mapping = iomem_get_mapping();
982982
pci_adjust_legacy_attr(b, pci_mmap_mem);
983983
error = device_create_bin_file(&b->dev, b->legacy_mem);
984984
if (error)

drivers/pci/quirks.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1900,6 +1900,7 @@ static void quirk_ryzen_xhci_d3hot(struct pci_dev *dev)
19001900
}
19011901
DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15e0, quirk_ryzen_xhci_d3hot);
19021902
DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15e1, quirk_ryzen_xhci_d3hot);
1903+
DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x1639, quirk_ryzen_xhci_d3hot);
19031904

19041905
#ifdef CONFIG_X86_IO_APIC
19051906
static int dmi_disable_ioapicreroute(const struct dmi_system_id *d)

0 commit comments

Comments
 (0)