diff options
Diffstat (limited to 'drivers/pci/host/pci-host-generic.c')
-rw-r--r-- | drivers/pci/host/pci-host-generic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/host/pci-host-generic.c b/drivers/pci/host/pci-host-generic.c index 6eb1aa75bd37..aee3c620ecf9 100644 --- a/drivers/pci/host/pci-host-generic.c +++ b/drivers/pci/host/pci-host-generic.c | |||
@@ -149,14 +149,14 @@ static int gen_pci_parse_request_of_pci_ranges(struct gen_pci *pci) | |||
149 | struct device *dev = pci->host.dev.parent; | 149 | struct device *dev = pci->host.dev.parent; |
150 | struct device_node *np = dev->of_node; | 150 | struct device_node *np = dev->of_node; |
151 | resource_size_t iobase; | 151 | resource_size_t iobase; |
152 | struct pci_host_bridge_window *win; | 152 | struct resource_entry *win; |
153 | 153 | ||
154 | err = of_pci_get_host_bridge_resources(np, 0, 0xff, &pci->resources, | 154 | err = of_pci_get_host_bridge_resources(np, 0, 0xff, &pci->resources, |
155 | &iobase); | 155 | &iobase); |
156 | if (err) | 156 | if (err) |
157 | return err; | 157 | return err; |
158 | 158 | ||
159 | list_for_each_entry(win, &pci->resources, list) { | 159 | resource_list_for_each_entry(win, &pci->resources) { |
160 | struct resource *parent, *res = win->res; | 160 | struct resource *parent, *res = win->res; |
161 | 161 | ||
162 | switch (resource_type(res)) { | 162 | switch (resource_type(res)) { |