diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2013-08-14 09:57:16 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-09-03 15:30:50 +0200 |
commit | c8acd40d38a7a2a82fb2e2fc59e5035643bb44d1 (patch) | |
tree | 594bd09f65fdf638d1ef0f17193b3a643bfbb411 /arch | |
parent | 8510376e59adffb4fb890d936a59d6f2e42b86b3 (diff) | |
download | linux-stable-c8acd40d38a7a2a82fb2e2fc59e5035643bb44d1.tar.gz linux-stable-c8acd40d38a7a2a82fb2e2fc59e5035643bb44d1.tar.bz2 linux-stable-c8acd40d38a7a2a82fb2e2fc59e5035643bb44d1.zip |
MIPS: TXx9: Fix build error if CONFIG_TOSHIBA_JMR3927 is not selected
The jmr3927_vec txx9_board_vec struct is defined in
txx9/jmr3927/setup.c which is only built if
CONFIG_TOSHIBA_JMR3927 is selected. This patch fixes the following
build problem:
arch/mips/txx9/generic/setup.c: In function 'select_board':
arch/mips/txx9/generic/setup.c:354:20: error:
'jmr3927_vec' undeclared (first use in this function)
arch/mips/txx9/generic/setup.c:354:20: note: each undeclared
identifier is reported only once for each function it appears in
make[3]: *** [arch/mips/txx9/generic/setup.o] Error 1
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Acked-by: Steven J. Hill <Steven.Hill@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5713/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/txx9/generic/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c index 681e7f86c080..2b0b83c171e0 100644 --- a/arch/mips/txx9/generic/setup.c +++ b/arch/mips/txx9/generic/setup.c @@ -350,7 +350,7 @@ static void __init select_board(void) } /* select "default" board */ -#ifdef CONFIG_CPU_TX39XX +#ifdef CONFIG_TOSHIBA_JMR3927 txx9_board_vec = &jmr3927_vec; #endif #ifdef CONFIG_CPU_TX49XX |