GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mach-w90x900 / mach-nuc950evb.c
blob04d295f89eb049f86ed0b8c6ba8386c5d0c0c09e
1 /*
2 * linux/arch/arm/mach-w90x900/mach-nuc950evb.c
4 * Based on mach-s3c2410/mach-smdk2410.c by Jonas Dietsche
6 * Copyright (C) 2008 Nuvoton technology corporation.
8 * Wan ZongShun <mcuos.com@gmail.com>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation;version 2 of the License.
13 * history:
14 * Wang Qiang (rurality.linux@gmail.com) add LCD support
18 #include <linux/platform_device.h>
19 #include <asm/mach/arch.h>
20 #include <asm/mach/map.h>
21 #include <asm/mach-types.h>
22 #include <mach/map.h>
23 #include <mach/fb.h>
25 #include "nuc950.h"
27 static void __init nuc950evb_map_io(void)
29 nuc950_map_io();
30 nuc950_init_clocks();
33 static void __init nuc950evb_init(void)
35 nuc950_board_init();
38 MACHINE_START(W90P950EVB, "W90P950EVB")
39 /* Maintainer: Wan ZongShun */
40 .phys_io = W90X900_PA_UART,
41 .io_pg_offst = (((u32)W90X900_VA_UART) >> 18) & 0xfffc,
42 .boot_params = 0,
43 .map_io = nuc950evb_map_io,
44 .init_irq = nuc900_init_irq,
45 .init_machine = nuc950evb_init,
46 .timer = &nuc900_timer,
47 MACHINE_END