aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/pci/pci-ar724x.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/pci/pci-ar724x.c')
-rw-r--r--arch/mips/pci/pci-ar724x.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/mips/pci/pci-ar724x.c b/arch/mips/pci/pci-ar724x.c
index c11c75be2d7e..279585d6eca0 100644
--- a/arch/mips/pci/pci-ar724x.c
+++ b/arch/mips/pci/pci-ar724x.c
@@ -177,22 +177,22 @@ static struct pci_ops ar724x_pci_ops = {
177}; 177};
178 178
179static struct resource ar724x_io_resource = { 179static struct resource ar724x_io_resource = {
180 .name = "PCI IO space", 180 .name = "PCI IO space",
181 .start = 0, 181 .start = 0,
182 .end = 0, 182 .end = 0,
183 .flags = IORESOURCE_IO, 183 .flags = IORESOURCE_IO,
184}; 184};
185 185
186static struct resource ar724x_mem_resource = { 186static struct resource ar724x_mem_resource = {
187 .name = "PCI memory space", 187 .name = "PCI memory space",
188 .start = AR724X_PCI_MEM_BASE, 188 .start = AR724X_PCI_MEM_BASE,
189 .end = AR724X_PCI_MEM_BASE + AR724X_PCI_MEM_SIZE - 1, 189 .end = AR724X_PCI_MEM_BASE + AR724X_PCI_MEM_SIZE - 1,
190 .flags = IORESOURCE_MEM, 190 .flags = IORESOURCE_MEM,
191}; 191};
192 192
193static struct pci_controller ar724x_pci_controller = { 193static struct pci_controller ar724x_pci_controller = {
194 .pci_ops = &ar724x_pci_ops, 194 .pci_ops = &ar724x_pci_ops,
195 .io_resource = &ar724x_io_resource, 195 .io_resource = &ar724x_io_resource,
196 .mem_resource = &ar724x_mem_resource, 196 .mem_resource = &ar724x_mem_resource,
197}; 197};
198 198