diff options
Diffstat (limited to 'arch/arm/mach-at91/board-afeb-9260v1.c')
-rw-r--r-- | arch/arm/mach-at91/board-afeb-9260v1.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/arch/arm/mach-at91/board-afeb-9260v1.c b/arch/arm/mach-at91/board-afeb-9260v1.c index a4924de48c3..b0c796d42e4 100644 --- a/arch/arm/mach-at91/board-afeb-9260v1.c +++ b/arch/arm/mach-at91/board-afeb-9260v1.c | |||
@@ -51,7 +51,7 @@ | |||
51 | static void __init afeb9260_init_early(void) | 51 | static void __init afeb9260_init_early(void) |
52 | { | 52 | { |
53 | /* Initialize processor: 18.432 MHz crystal */ | 53 | /* Initialize processor: 18.432 MHz crystal */ |
54 | at91sam9260_initialize(18432000); | 54 | at91_initialize(18432000); |
55 | 55 | ||
56 | /* DBGU on ttyS0. (Rx & Tx only) */ | 56 | /* DBGU on ttyS0. (Rx & Tx only) */ |
57 | at91_register_uart(0, 0, 0); | 57 | at91_register_uart(0, 0, 0); |
@@ -70,12 +70,6 @@ static void __init afeb9260_init_early(void) | |||
70 | at91_set_serial_console(0); | 70 | at91_set_serial_console(0); |
71 | } | 71 | } |
72 | 72 | ||
73 | static void __init afeb9260_init_irq(void) | ||
74 | { | ||
75 | at91sam9260_init_interrupts(NULL); | ||
76 | } | ||
77 | |||
78 | |||
79 | /* | 73 | /* |
80 | * USB Host port | 74 | * USB Host port |
81 | */ | 75 | */ |
@@ -219,9 +213,9 @@ static void __init afeb9260_board_init(void) | |||
219 | MACHINE_START(AFEB9260, "Custom afeb9260 board") | 213 | MACHINE_START(AFEB9260, "Custom afeb9260 board") |
220 | /* Maintainer: Sergey Lapin <slapin@ossfans.org> */ | 214 | /* Maintainer: Sergey Lapin <slapin@ossfans.org> */ |
221 | .timer = &at91sam926x_timer, | 215 | .timer = &at91sam926x_timer, |
222 | .map_io = at91sam9260_map_io, | 216 | .map_io = at91_map_io, |
223 | .init_early = afeb9260_init_early, | 217 | .init_early = afeb9260_init_early, |
224 | .init_irq = afeb9260_init_irq, | 218 | .init_irq = at91_init_irq_default, |
225 | .init_machine = afeb9260_board_init, | 219 | .init_machine = afeb9260_board_init, |
226 | MACHINE_END | 220 | MACHINE_END |
227 | 221 | ||