Re: [PATCH] lib/Kconfig.debug: fix typo in select statement

2016-08-20 Thread Kees Cook
On Sat, Aug 20, 2016 at 11:20 AM, Paul E. McKenney wrote: > On Sat, Aug 20, 2016 at 12:16:10PM +0200, Valentin Rothberg wrote: >> Commit 484f29c7430b3 ("bug: Provide toggle for BUG on data corruption") >> added a Kconfig select statement on CONFIG_DEBUG_LIST, but the CONFIG_ >> prefix is only used

Re: [PATCH] lib/Kconfig.debug: fix typo in select statement

2016-08-20 Thread Paul E. McKenney
On Sat, Aug 20, 2016 at 12:16:10PM +0200, Valentin Rothberg wrote: > Commit 484f29c7430b3 ("bug: Provide toggle for BUG on data corruption") > added a Kconfig select statement on CONFIG_DEBUG_LIST, but the CONFIG_ > prefix is only used in Make and C(PP) syntax. Remove the CONFIG_ prefix > to corre

[PATCH] lib/Kconfig.debug: fix typo in select statement

2016-08-20 Thread Valentin Rothberg
Commit 484f29c7430b3 ("bug: Provide toggle for BUG on data corruption") added a Kconfig select statement on CONFIG_DEBUG_LIST, but the CONFIG_ prefix is only used in Make and C(PP) syntax. Remove the CONFIG_ prefix to correctly select the Kconfig option DEBUG_LIST. Signed-off-by: Valentin Rothber