Merge branch 'pci/resource' into next
authorBjorn Helgaas <bhelgaas@google.com>
Wed, 31 Jan 2018 16:12:56 +0000 (10:12 -0600)
committerBjorn Helgaas <helgaas@kernel.org>
Wed, 31 Jan 2018 16:12:56 +0000 (10:12 -0600)
* pci/resource:
  PCI: tegra: Remove PCI_REASSIGN_ALL_BUS use on Tegra
  resource: Set type when reserving new regions
  resource: Set type of "reserve=" user-specified resources
  irqchip/i8259: Set I/O port resource types correctly
  powerpc: Set I/O port resource types correctly
  MIPS: Set I/O port resource types correctly
  vgacon: Set VGA struct resource types
  PCI: Use dev_info() rather than dev_err() for ROM validation
  PCI: Remove PCI_REASSIGN_ALL_RSRC use on arm and arm64
  PCI: Remove sysfs resource mmap warning

Conflicts:
drivers/pci/rom.c

1  2 
drivers/pci/pci-sysfs.c
drivers/pci/rom.c

Simple merge
index 61f9e8a5ea8bf91337e4c4de99a6fae57438c0c7,68ab7c17955afa04e4e6a8553fb9ae31fcd29c19..2f8fcd9ba5c1dd1f52b6180564acc7c2ed1a8243
@@@ -92,15 -92,15 +92,15 @@@ size_t pci_get_rom_size(struct pci_dev 
                void __iomem *pds;
                /* Standard PCI ROMs start out with these bytes 55 AA */
                if (readw(image) != 0xAA55) {
-                       pci_err(pdev, "Invalid PCI ROM header signature: expecting 0xaa55, got %#06x\n",
 -                      dev_info(&pdev->dev, "Invalid PCI ROM header signature: expecting 0xaa55, got %#06x\n",
--                              readw(image));
++                      pci_info(pdev, "Invalid PCI ROM header signature: expecting 0xaa55, got %#06x\n",
++                               readw(image));
                        break;
                }
                /* get the PCI data structure and check its "PCIR" signature */
                pds = image + readw(image + 24);
                if (readl(pds) != 0x52494350) {
-                       pci_err(pdev, "Invalid PCI ROM data signature: expecting 0x52494350, got %#010x\n",
 -                      dev_info(&pdev->dev, "Invalid PCI ROM data signature: expecting 0x52494350, got %#010x\n",
--                              readl(pds));
++                      pci_info(pdev, "Invalid PCI ROM data signature: expecting 0x52494350, got %#010x\n",
++                               readl(pds));
                        break;
                }
                last_image = readb(pds + 21) & 0x80;