Can you do the config thing differently?
.. because instead of having each architecture do these kinds of things,
we're trying to make the *generic* code (ie lib/Kconfig) do
config GENERIC_FIND_FIRST_BIT
bool
default n
so that you only have one single declaration (close to where the code
actually exists), and then the architectures would just do
select GENERIC_FIND_FIRST_BIT
select GENERIC_FIND_NEXT_BIT
in their architecture settings. That's how we're now doing things like
HAVE_IDE, HAVE_OPROFILE, etc etc.
Hmm?
Linus
--