Commit 1cb73f8c authored by Bjorn Helgaas's avatar Bjorn Helgaas

Merge branch 'pci/mjg-pci-roms-from-efi' into next

* pci/mjg-pci-roms-from-efi:
  PCI: Use phys_addr_t for physical ROM address
parents 3ced69f8 dbd3fc33
...@@ -628,8 +628,8 @@ int pcibios_add_device(struct pci_dev *dev) ...@@ -628,8 +628,8 @@ int pcibios_add_device(struct pci_dev *dev)
(PCI_FUNC(dev->devfn) == rom->function) && (PCI_FUNC(dev->devfn) == rom->function) &&
(dev->vendor == rom->vendor) && (dev->vendor == rom->vendor) &&
(dev->device == rom->devid)) { (dev->device == rom->devid)) {
dev->rom = (void *)(unsigned long)(pa_data + dev->rom = pa_data +
offsetof(struct pci_setup_rom, romdata)); offsetof(struct pci_setup_rom, romdata);
dev->romlen = rom->pcilen; dev->romlen = rom->pcilen;
} }
} }
......
...@@ -122,7 +122,7 @@ void __iomem *pci_map_rom(struct pci_dev *pdev, size_t *size) ...@@ -122,7 +122,7 @@ void __iomem *pci_map_rom(struct pci_dev *pdev, size_t *size)
*/ */
if (pdev->rom && pdev->romlen) { if (pdev->rom && pdev->romlen) {
*size = pdev->romlen; *size = pdev->romlen;
return phys_to_virt((phys_addr_t)pdev->rom); return phys_to_virt(pdev->rom);
/* /*
* IORESOURCE_ROM_SHADOW set on x86, x86_64 and IA64 supports legacy * IORESOURCE_ROM_SHADOW set on x86, x86_64 and IA64 supports legacy
* memory map if the VGA enable bit of the Bridge Control register is * memory map if the VGA enable bit of the Bridge Control register is
......
...@@ -333,7 +333,7 @@ struct pci_dev { ...@@ -333,7 +333,7 @@ struct pci_dev {
}; };
struct pci_ats *ats; /* Address Translation Service */ struct pci_ats *ats; /* Address Translation Service */
#endif #endif
void *rom; /* Physical pointer to ROM if it's not from the BAR */ phys_addr_t rom; /* Physical address of ROM if it's not from the BAR */
size_t romlen; /* Length of ROM if it's not from the BAR */ size_t romlen; /* Length of ROM if it's not from the BAR */
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment