diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2017-04-21 03:28:18 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2017-04-21 03:34:01 +0200 |
commit | 3e441845caf1c9591b5b961f34ff1a37d023c9e2 (patch) | |
tree | 77f46b0c9d7771dcbf2c8133b9fbf06662a3f619 /arch/mips | |
parent | c1d590081e3f77b364e8563d3edf83ca245a51d9 (diff) | |
download | linux-3e441845caf1c9591b5b961f34ff1a37d023c9e2.tar.gz linux-3e441845caf1c9591b5b961f34ff1a37d023c9e2.tar.bz2 linux-3e441845caf1c9591b5b961f34ff1a37d023c9e2.zip |
MIPS: Sibyte: Fix Kconfig warning.
warning: (SB1XXX_CORELIS) selects DEBUG_INFO which has unmet direct dependencies (DEBUG_KERNEL && !COMPILE_TEST)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/Kconfig.debug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/Kconfig.debug b/arch/mips/Kconfig.debug index 7f975b20b20c..42a97c59200f 100644 --- a/arch/mips/Kconfig.debug +++ b/arch/mips/Kconfig.debug @@ -82,7 +82,7 @@ config CMDLINE_OVERRIDE config SB1XXX_CORELIS bool "Corelis Debugger" depends on SIBYTE_SB1xxx_SOC - select DEBUG_INFO + select DEBUG_INFO if !COMPILE_TEST help Select compile flags that produce code that can be processed by the Corelis mksym utility and UDB Emulator. |