aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arc
diff options
context:
space:
mode:
authorMischa Jonker <mjonker@synopsys.com>2013-06-04 05:00:49 -0400
committerVineet Gupta <vgupta@synopsys.com>2013-06-22 04:16:41 -0400
commitba5afadb114d09ce52a0d6886a0eab4fcb679501 (patch)
treec8f320b972d87e6aabf32f18469534f703095401 /arch/arc
parent7d132055814ef17a6c7b69f342244c410a5e000f (diff)
ARC: [plat-arcfpga] Fix build breakage when !CONFIG_ARC_SERIAL
This fixes the following: - CONFIG_ARC_SERIAL_BAUD is only defined when CONFIG_SERIAL_ARC is defined. Make sure that it isn't referenced otherwise. - There is no use for initializing arc_uart_info[] when CONFIG_SERIAL_ARC is not defined. [vgupta: tweaked changelog title, used IS_ENABLED() kconfig helper] Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc')
-rw-r--r--arch/arc/plat-arcfpga/platform.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/arch/arc/plat-arcfpga/platform.c b/arch/arc/plat-arcfpga/platform.c
index b3700c064c06..d71f3c3bcf24 100644
--- a/arch/arc/plat-arcfpga/platform.c
+++ b/arch/arc/plat-arcfpga/platform.c
@@ -77,6 +77,7 @@ static void __init setup_bvci_lat_unit(void)
77 77
78/*----------------------- Platform Devices -----------------------------*/ 78/*----------------------- Platform Devices -----------------------------*/
79 79
80#if IS_ENABLED(CONFIG_SERIAL_ARC)
80static unsigned long arc_uart_info[] = { 81static unsigned long arc_uart_info[] = {
81 0, /* uart->is_emulated (runtime @running_on_hw) */ 82 0, /* uart->is_emulated (runtime @running_on_hw) */
82 0, /* uart->port.uartclk */ 83 0, /* uart->port.uartclk */
@@ -115,7 +116,7 @@ static struct platform_device arc_uart0_dev = {
115static struct platform_device *fpga_early_devs[] __initdata = { 116static struct platform_device *fpga_early_devs[] __initdata = {
116 &arc_uart0_dev, 117 &arc_uart0_dev,
117}; 118};
118#endif 119#endif /* CONFIG_SERIAL_ARC_CONSOLE */
119 120
120static void arc_fpga_serial_init(void) 121static void arc_fpga_serial_init(void)
121{ 122{
@@ -152,8 +153,13 @@ static void arc_fpga_serial_init(void)
152 * otherwise the early console never gets a chance to run. 153 * otherwise the early console never gets a chance to run.
153 */ 154 */
154 add_preferred_console("ttyARC", 0, "115200"); 155 add_preferred_console("ttyARC", 0, "115200");
155#endif 156#endif /* CONFIG_SERIAL_ARC_CONSOLE */
157}
158#else /* !IS_ENABLED(CONFIG_SERIAL_ARC) */
159static void arc_fpga_serial_init(void)
160{
156} 161}
162#endif
157 163
158static void __init plat_fpga_early_init(void) 164static void __init plat_fpga_early_init(void)
159{ 165{
@@ -169,7 +175,7 @@ static void __init plat_fpga_early_init(void)
169} 175}
170 176
171static struct of_dev_auxdata plat_auxdata_lookup[] __initdata = { 177static struct of_dev_auxdata plat_auxdata_lookup[] __initdata = {
172#if defined(CONFIG_SERIAL_ARC) || defined(CONFIG_SERIAL_ARC_MODULE) 178#if IS_ENABLED(CONFIG_SERIAL_ARC)
173 OF_DEV_AUXDATA("snps,arc-uart", UART0_BASE, "arc-uart", arc_uart_info), 179 OF_DEV_AUXDATA("snps,arc-uart", UART0_BASE, "arc-uart", arc_uart_info),
174#endif 180#endif
175 {} 181 {}