diff options
Diffstat (limited to 'arch/arm/mach-iop13xx')
-rw-r--r-- | arch/arm/mach-iop13xx/iq81340mc.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-iop13xx/iq81340sc.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-iop13xx/pci.c | 2 |
3 files changed, 3 insertions, 11 deletions
diff --git a/arch/arm/mach-iop13xx/iq81340mc.c b/arch/arm/mach-iop13xx/iq81340mc.c index e3f3e7daa79e..02a8228ac2d3 100644 --- a/arch/arm/mach-iop13xx/iq81340mc.c +++ b/arch/arm/mach-iop13xx/iq81340mc.c | |||
@@ -84,17 +84,13 @@ static void __init iq81340mc_timer_init(void) | |||
84 | iop_init_time(bus_freq); | 84 | iop_init_time(bus_freq); |
85 | } | 85 | } |
86 | 86 | ||
87 | static struct sys_timer iq81340mc_timer = { | ||
88 | .init = iq81340mc_timer_init, | ||
89 | }; | ||
90 | |||
91 | MACHINE_START(IQ81340MC, "Intel IQ81340MC") | 87 | MACHINE_START(IQ81340MC, "Intel IQ81340MC") |
92 | /* Maintainer: Dan Williams <dan.j.williams@intel.com> */ | 88 | /* Maintainer: Dan Williams <dan.j.williams@intel.com> */ |
93 | .atag_offset = 0x100, | 89 | .atag_offset = 0x100, |
94 | .init_early = iop13xx_init_early, | 90 | .init_early = iop13xx_init_early, |
95 | .map_io = iop13xx_map_io, | 91 | .map_io = iop13xx_map_io, |
96 | .init_irq = iop13xx_init_irq, | 92 | .init_irq = iop13xx_init_irq, |
97 | .timer = &iq81340mc_timer, | 93 | .init_time = iq81340mc_timer_init, |
98 | .init_machine = iq81340mc_init, | 94 | .init_machine = iq81340mc_init, |
99 | .restart = iop13xx_restart, | 95 | .restart = iop13xx_restart, |
100 | MACHINE_END | 96 | MACHINE_END |
diff --git a/arch/arm/mach-iop13xx/iq81340sc.c b/arch/arm/mach-iop13xx/iq81340sc.c index e94744111634..1b80f10722b3 100644 --- a/arch/arm/mach-iop13xx/iq81340sc.c +++ b/arch/arm/mach-iop13xx/iq81340sc.c | |||
@@ -86,17 +86,13 @@ static void __init iq81340sc_timer_init(void) | |||
86 | iop_init_time(bus_freq); | 86 | iop_init_time(bus_freq); |
87 | } | 87 | } |
88 | 88 | ||
89 | static struct sys_timer iq81340sc_timer = { | ||
90 | .init = iq81340sc_timer_init, | ||
91 | }; | ||
92 | |||
93 | MACHINE_START(IQ81340SC, "Intel IQ81340SC") | 89 | MACHINE_START(IQ81340SC, "Intel IQ81340SC") |
94 | /* Maintainer: Dan Williams <dan.j.williams@intel.com> */ | 90 | /* Maintainer: Dan Williams <dan.j.williams@intel.com> */ |
95 | .atag_offset = 0x100, | 91 | .atag_offset = 0x100, |
96 | .init_early = iop13xx_init_early, | 92 | .init_early = iop13xx_init_early, |
97 | .map_io = iop13xx_map_io, | 93 | .map_io = iop13xx_map_io, |
98 | .init_irq = iop13xx_init_irq, | 94 | .init_irq = iop13xx_init_irq, |
99 | .timer = &iq81340sc_timer, | 95 | .init_time = iq81340sc_timer_init, |
100 | .init_machine = iq81340sc_init, | 96 | .init_machine = iq81340sc_init, |
101 | .restart = iop13xx_restart, | 97 | .restart = iop13xx_restart, |
102 | MACHINE_END | 98 | MACHINE_END |
diff --git a/arch/arm/mach-iop13xx/pci.c b/arch/arm/mach-iop13xx/pci.c index 2f28018c4447..9082b84aeebb 100644 --- a/arch/arm/mach-iop13xx/pci.c +++ b/arch/arm/mach-iop13xx/pci.c | |||
@@ -504,7 +504,7 @@ iop13xx_pci_abort(unsigned long addr, unsigned int fsr, struct pt_regs *regs) | |||
504 | 504 | ||
505 | /* Scan an IOP13XX PCI bus. nr selects which ATU we use. | 505 | /* Scan an IOP13XX PCI bus. nr selects which ATU we use. |
506 | */ | 506 | */ |
507 | struct pci_bus * __devinit iop13xx_scan_bus(int nr, struct pci_sys_data *sys) | 507 | struct pci_bus *iop13xx_scan_bus(int nr, struct pci_sys_data *sys) |
508 | { | 508 | { |
509 | int which_atu; | 509 | int which_atu; |
510 | struct pci_bus *bus = NULL; | 510 | struct pci_bus *bus = NULL; |