Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'pci-v5.6-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci

Pull PCI fixes from Bjorn Helgaas:

- Fix build issue on 32-bit ARM with old compilers (Marek Szyprowski)

- Update MAINTAINERS for recent Cadence driver file move (Lukas
Bulwahn)

* tag 'pci-v5.6-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci:
MAINTAINERS: Correct Cadence PCI driver path
PCI: brcmstb: Fix build on 32bit ARM platforms with older compilers

+2 -2
+1 -1
MAINTAINERS
··· 12739 12739 L: linux-pci@vger.kernel.org 12740 12740 S: Maintained 12741 12741 F: Documentation/devicetree/bindings/pci/cdns,*.txt 12742 - F: drivers/pci/controller/pcie-cadence* 12742 + F: drivers/pci/controller/cadence/ 12743 12743 12744 12744 PCI DRIVER FOR FREESCALE LAYERSCAPE 12745 12745 M: Minghuan Lian <minghuan.Lian@nxp.com>
+1 -1
drivers/pci/controller/pcie-brcmstb.c
··· 670 670 * outbound memory @ 3GB). So instead it will start at the 1x 671 671 * multiple of its size 672 672 */ 673 - if (!*rc_bar2_size || *rc_bar2_offset % *rc_bar2_size || 673 + if (!*rc_bar2_size || (*rc_bar2_offset & (*rc_bar2_size - 1)) || 674 674 (*rc_bar2_offset < SZ_4G && *rc_bar2_offset > SZ_2G)) { 675 675 dev_err(dev, "Invalid rc_bar2_offset/size: size 0x%llx, off 0x%llx\n", 676 676 *rc_bar2_size, *rc_bar2_offset);