diff options
Diffstat (limited to 'arch/arm/mach-s5p64x0/init.c')
-rw-r--r-- | arch/arm/mach-s5p64x0/init.c | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/arch/arm/mach-s5p64x0/init.c b/arch/arm/mach-s5p64x0/init.c deleted file mode 100644 index 659a66c131a1..000000000000 --- a/arch/arm/mach-s5p64x0/init.c +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | /* linux/arch/arm/mach-s5p64x0/init.c | ||
2 | * | ||
3 | * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd. | ||
4 | * http://www.samsung.com | ||
5 | * | ||
6 | * S5P64X0 - Init support | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | ||
12 | |||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/types.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/serial_core.h> | ||
17 | |||
18 | #include <mach/map.h> | ||
19 | |||
20 | #include <plat/cpu.h> | ||
21 | #include <plat/devs.h> | ||
22 | #include <plat/s5p6440.h> | ||
23 | #include <plat/s5p6450.h> | ||
24 | #include <plat/regs-serial.h> | ||
25 | |||
26 | /* uart registration process */ | ||
27 | void __init s5p6440_init_uarts(struct s3c2410_uartcfg *cfg, int no) | ||
28 | { | ||
29 | int uart; | ||
30 | |||
31 | for (uart = 0; uart < no; uart++) { | ||
32 | s5p_uart_resources[uart].resources->start = S5P6440_PA_UART(uart); | ||
33 | s5p_uart_resources[uart].resources->end = S5P6440_PA_UART(uart) + S5P_SZ_UART; | ||
34 | } | ||
35 | |||
36 | s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources, cfg, no); | ||
37 | } | ||
38 | |||
39 | void __init s5p6450_init_uarts(struct s3c2410_uartcfg *cfg, int no) | ||
40 | { | ||
41 | s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources, cfg, no); | ||
42 | } | ||