aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-ks8695
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-ks8695')
-rw-r--r--arch/arm/mach-ks8695/pci.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/arch/arm/mach-ks8695/pci.c b/arch/arm/mach-ks8695/pci.c
index acc701435817..bb18193b4bac 100644
--- a/arch/arm/mach-ks8695/pci.c
+++ b/arch/arm/mach-ks8695/pci.c
@@ -141,12 +141,6 @@ static struct pci_ops ks8695_pci_ops = {
141 .write = ks8695_pci_writeconfig, 141 .write = ks8695_pci_writeconfig,
142}; 142};
143 143
144static struct pci_bus* __init ks8695_pci_scan_bus(int nr, struct pci_sys_data *sys)
145{
146 return pci_scan_root_bus(NULL, sys->busnr, &ks8695_pci_ops, sys,
147 &sys->resources);
148}
149
150static struct resource pci_mem = { 144static struct resource pci_mem = {
151 .name = "PCI Memory space", 145 .name = "PCI Memory space",
152 .start = KS8695_PCIMEM_PA, 146 .start = KS8695_PCIMEM_PA,
@@ -302,11 +296,10 @@ static void ks8695_show_pciregs(void)
302 296
303static struct hw_pci ks8695_pci __initdata = { 297static struct hw_pci ks8695_pci __initdata = {
304 .nr_controllers = 1, 298 .nr_controllers = 1,
299 .ops = &ks8695_pci_ops,
305 .preinit = ks8695_pci_preinit, 300 .preinit = ks8695_pci_preinit,
306 .setup = ks8695_pci_setup, 301 .setup = ks8695_pci_setup,
307 .scan = ks8695_pci_scan_bus,
308 .postinit = NULL, 302 .postinit = NULL,
309 .swizzle = pci_std_swizzle,
310 .map_irq = NULL, 303 .map_irq = NULL,
311}; 304};
312 305