]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ASoC: davinci: fix DM365_EVM codec selection
authorArnd Bergmann <arnd@arndb.de>
Wed, 28 Jan 2015 21:30:01 +0000 (22:30 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Mar 2015 22:57:18 +0000 (14:57 -0800)
commit38e17b6477cf737704716ee567406a6e90be17aa
tree3655c16ed4647debdc391484119c3b54528688a4
parent6393f60525cc47c7456b78ea5e2bc03e7d6c69f9
ASoC: davinci: fix DM365_EVM codec selection

commit f9a7ba326938f03b9305af8d31c360fce10cd4df upstream.

An earlier bug fix of mine made the SND_DM365_VOICE_CODEC symbol
tristate to avoid creating an undefined reference from the
davinci-vcif.c driver to the davinci_soc_platform_register
function that may be in a module.

However, this may now lead to a different error on randconfig
kernels:

"warning: SND_DM365_VOICE_CODEC creates inconsistent choice state"

This happens because we now have a choice statement with
one bool and one tristate option, and the latter might not
support being set to 'y' because of dependencies.

This new change turns the other option into 'tristate' as well,
which avoids the problem.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 19926c6de0c3 ("ASoC: davinci: vcif must be a module if SND_DAVINCI_SOC is")
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/soc/davinci/Kconfig