aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/pci/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/pci/common.c')
-rw-r--r--arch/x86/pci/common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c
index fddb9f66cc47..d07f3bbca5a1 100644
--- a/arch/x86/pci/common.c
+++ b/arch/x86/pci/common.c
@@ -628,8 +628,8 @@ int pcibios_add_device(struct pci_dev *dev)
628 (PCI_FUNC(dev->devfn) == rom->function) && 628 (PCI_FUNC(dev->devfn) == rom->function) &&
629 (dev->vendor == rom->vendor) && 629 (dev->vendor == rom->vendor) &&
630 (dev->device == rom->devid)) { 630 (dev->device == rom->devid)) {
631 dev->rom = (void *)(unsigned long)(pa_data + 631 dev->rom = pa_data +
632 offsetof(struct pci_setup_rom, romdata)); 632 offsetof(struct pci_setup_rom, romdata);
633 dev->romlen = rom->pcilen; 633 dev->romlen = rom->pcilen;
634 } 634 }
635 } 635 }