diff options
author | Jayachandran C <jchandra@broadcom.com> | 2013-10-25 07:24:15 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-01-24 16:39:50 -0500 |
commit | 194d315da86af504559a8a21026360097575bd55 (patch) | |
tree | 324cec961ae685744b42aee0d5155abb1c3b9291 /arch/mips/netlogic | |
parent | a17fca649c581c0ab07215b61567468169d208e3 (diff) |
MIPS: Netlogic: Remove XLR early serial setup
The early serial code is not needed because we already have early
printk support provided by common/earlycons.c
This change also fixes the following build error that occurs when
CONFIG_SERIAL_8250 is not configured for Netlogic XLR boards:
arch/mips/built-in.o: In function `nlm_early_serial_setup':
setup.c:(.init.text+0x274): undefined reference to `early_serial_setup'
make: *** [vmlinux] Error 1
Reported-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Jayachandran C <jchandra@broadcom.com>
Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/6083/
Diffstat (limited to 'arch/mips/netlogic')
-rw-r--r-- | arch/mips/netlogic/xlr/platform.c | 4 | ||||
-rw-r--r-- | arch/mips/netlogic/xlr/setup.c | 20 |
2 files changed, 2 insertions, 22 deletions
diff --git a/arch/mips/netlogic/xlr/platform.c b/arch/mips/netlogic/xlr/platform.c index 7b96a91f4773..4785932af248 100644 --- a/arch/mips/netlogic/xlr/platform.c +++ b/arch/mips/netlogic/xlr/platform.c | |||
@@ -23,7 +23,7 @@ | |||
23 | #include <asm/netlogic/xlr/pic.h> | 23 | #include <asm/netlogic/xlr/pic.h> |
24 | #include <asm/netlogic/xlr/xlr.h> | 24 | #include <asm/netlogic/xlr/xlr.h> |
25 | 25 | ||
26 | unsigned int nlm_xlr_uart_in(struct uart_port *p, int offset) | 26 | static unsigned int nlm_xlr_uart_in(struct uart_port *p, int offset) |
27 | { | 27 | { |
28 | uint64_t uartbase; | 28 | uint64_t uartbase; |
29 | unsigned int value; | 29 | unsigned int value; |
@@ -41,7 +41,7 @@ unsigned int nlm_xlr_uart_in(struct uart_port *p, int offset) | |||
41 | return value; | 41 | return value; |
42 | } | 42 | } |
43 | 43 | ||
44 | void nlm_xlr_uart_out(struct uart_port *p, int offset, int value) | 44 | static void nlm_xlr_uart_out(struct uart_port *p, int offset, int value) |
45 | { | 45 | { |
46 | uint64_t uartbase; | 46 | uint64_t uartbase; |
47 | 47 | ||
diff --git a/arch/mips/netlogic/xlr/setup.c b/arch/mips/netlogic/xlr/setup.c index 214d123b79fa..de1f28774ffc 100644 --- a/arch/mips/netlogic/xlr/setup.c +++ b/arch/mips/netlogic/xlr/setup.c | |||
@@ -60,25 +60,6 @@ unsigned int nlm_threads_per_core = 1; | |||
60 | struct nlm_soc_info nlm_nodes[NLM_NR_NODES]; | 60 | struct nlm_soc_info nlm_nodes[NLM_NR_NODES]; |
61 | cpumask_t nlm_cpumask = CPU_MASK_CPU0; | 61 | cpumask_t nlm_cpumask = CPU_MASK_CPU0; |
62 | 62 | ||
63 | static void __init nlm_early_serial_setup(void) | ||
64 | { | ||
65 | struct uart_port s; | ||
66 | unsigned long uart_base; | ||
67 | |||
68 | uart_base = (unsigned long)nlm_mmio_base(NETLOGIC_IO_UART_0_OFFSET); | ||
69 | memset(&s, 0, sizeof(s)); | ||
70 | s.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST; | ||
71 | s.iotype = UPIO_MEM32; | ||
72 | s.regshift = 2; | ||
73 | s.irq = PIC_UART_0_IRQ; | ||
74 | s.uartclk = PIC_CLK_HZ; | ||
75 | s.serial_in = nlm_xlr_uart_in; | ||
76 | s.serial_out = nlm_xlr_uart_out; | ||
77 | s.mapbase = uart_base; | ||
78 | s.membase = (unsigned char __iomem *)uart_base; | ||
79 | early_serial_setup(&s); | ||
80 | } | ||
81 | |||
82 | static void nlm_linux_exit(void) | 63 | static void nlm_linux_exit(void) |
83 | { | 64 | { |
84 | uint64_t gpiobase; | 65 | uint64_t gpiobase; |
@@ -215,7 +196,6 @@ void __init prom_init(void) | |||
215 | memcpy(reset_vec, (void *)nlm_reset_entry, | 196 | memcpy(reset_vec, (void *)nlm_reset_entry, |
216 | (nlm_reset_entry_end - nlm_reset_entry)); | 197 | (nlm_reset_entry_end - nlm_reset_entry)); |
217 | 198 | ||
218 | nlm_early_serial_setup(); | ||
219 | build_arcs_cmdline(argv); | 199 | build_arcs_cmdline(argv); |
220 | prom_add_memory(); | 200 | prom_add_memory(); |
221 | 201 | ||