diff options
author | James Hogan <james.hogan@imgtec.com> | 2014-01-16 08:39:24 +0000 |
---|---|---|
committer | James Hogan <james.hogan@imgtec.com> | 2014-03-18 10:22:57 +0000 |
commit | cca7c66f2dab1343fa4fe854c3700bac3a1f71c0 (patch) | |
tree | cf1dd2f5cd3733a6e913680e63e01bf6e1992d36 /arch/metag | |
parent | 48ce8e3f7080869763cfb3ab4ac57bb0ba4da698 (diff) |
metag: Fix METAG Kconfig symbol select ordering
Commit d1a1dc0be866 (consolidate per-arch stack overflow debugging
options) broke the ordering of the selects in arch/metag/Kconfig by
adding select HAVE_DEBUG_STACKOVERFLOW at the end. Move it to the right
place.
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Diffstat (limited to 'arch/metag')
-rw-r--r-- | arch/metag/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/metag/Kconfig b/arch/metag/Kconfig index e56abd2c1b4f..b1d3c9c0eff8 100644 --- a/arch/metag/Kconfig +++ b/arch/metag/Kconfig @@ -9,6 +9,7 @@ config METAG select HAVE_ARCH_TRACEHOOK select HAVE_C_RECORDMCOUNT select HAVE_DEBUG_KMEMLEAK + select HAVE_DEBUG_STACKOVERFLOW select HAVE_DYNAMIC_FTRACE select HAVE_FTRACE_MCOUNT_RECORD select HAVE_FUNCTION_TRACER @@ -29,7 +30,6 @@ config METAG select OF select OF_EARLY_FLATTREE select SPARSE_IRQ - select HAVE_DEBUG_STACKOVERFLOW config STACKTRACE_SUPPORT def_bool y |