[PATCH] Remove remaining references of CONFIG_GENERIC_TIME
From: nico@fluxnic.net (Nicolas Pitre)
Date: 2011-08-01 16:40:43
Also in:
linux-kbuild, linux-um, lkml
From: nico@fluxnic.net (Nicolas Pitre)
Date: 2011-08-01 16:40:43
Also in:
linux-kbuild, linux-um, lkml
On Mon, 1 Aug 2011, Arnaud Lacombe wrote:
Moreover, this approach is deemed to fail. The current symbol
namespace is tied to an arch, so whenever you do:
arch/arm/Kconfig:
config FOO
bool
config BAZ
bool
drivers/cpufreq/Kconfig
config BAR
depends on ARM && FOO
select BAZ
You will end up triggering the warning for every ARCH != ARM...You can keep a state for those symbols with regard to their level of reference. Surely if ARM isn't true, BAZ is not "actively" referenced in the end. Nicolas