|
@@ -26,11 +26,12 @@
|
|
|
#include "pci.h"
|
|
|
|
|
|
|
|
|
-void pci_update_resource(struct pci_dev *dev, struct resource *res, int resno)
|
|
|
+void pci_update_resource(struct pci_dev *dev, int resno)
|
|
|
{
|
|
|
struct pci_bus_region region;
|
|
|
u32 new, check, mask;
|
|
|
int reg;
|
|
|
+ struct resource *res = dev->resource + resno;
|
|
|
|
|
|
/*
|
|
|
* Ignore resources for unimplemented BARs and unused resource slots
|
|
@@ -162,7 +163,7 @@ int pci_assign_resource(struct pci_dev *dev, int resno)
|
|
|
} else {
|
|
|
res->flags &= ~IORESOURCE_STARTALIGN;
|
|
|
if (resno < PCI_BRIDGE_RESOURCES)
|
|
|
- pci_update_resource(dev, res, resno);
|
|
|
+ pci_update_resource(dev, resno);
|
|
|
}
|
|
|
|
|
|
return ret;
|
|
@@ -197,7 +198,7 @@ int pci_assign_resource_fixed(struct pci_dev *dev, int resno)
|
|
|
dev_err(&dev->dev, "BAR %d: can't allocate %s resource %pR\n",
|
|
|
resno, res->flags & IORESOURCE_IO ? "I/O" : "mem", res);
|
|
|
} else if (resno < PCI_BRIDGE_RESOURCES) {
|
|
|
- pci_update_resource(dev, res, resno);
|
|
|
+ pci_update_resource(dev, resno);
|
|
|
}
|
|
|
|
|
|
return ret;
|