Signed-off-by: Yinghai Lu <ying...@kernel.org>
Cc: x...@kernel.org
Cc: Huang Ying <ying.hu...@intel.com>
Cc: "Rafael J. Wysocki" <r...@sisk.pl>
---
 arch/x86/pci/mrst.c |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/arch/x86/pci/mrst.c b/arch/x86/pci/mrst.c
index 6eb18c4..884ea69 100644
--- a/arch/x86/pci/mrst.c
+++ b/arch/x86/pci/mrst.c
@@ -280,6 +280,7 @@ static void pci_fixed_bar_fixup(struct pci_dev *dev)
        unsigned long offset;
        u32 size;
        int i;
+       struct resource *res;
 
        if (!pci_soc_mode)
                return;
@@ -294,10 +295,10 @@ static void pci_fixed_bar_fixup(struct pci_dev *dev)
            PCI_DEVFN(2, 2) == dev->devfn)
                return;
 
-       for (i = 0; i < PCI_ROM_RESOURCE; i++) {
+       for_each_pci_resource(dev, res, i, PCI_STD_RES) {
                pci_read_config_dword(dev, offset + 8 + (i * 4), &size);
-               dev->resource[i].end = dev->resource[i].start + size - 1;
-               dev->resource[i].flags |= IORESOURCE_PCI_FIXED;
+               res->end = res->start + size - 1;
+               res->flags |= IORESOURCE_PCI_FIXED;
        }
 }
 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_ANY_ID, pci_fixed_bar_fixup);
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to