I accidentally marked this as patch 1/2, but this is the only patch. Sorry for the confusion.
On Wed, Apr 8, 2015 at 4:56 PM, Gregory Fong <[email protected]> wrote: > get_symbol_str() was assuming that symbols would only have a single > property for the purpose of printing define and depends information. > This is not true, and one current example is FRAME_POINTER which is > both in lib/Kconfig.debug and arch/arm/Kconfig.debug. > > In order to print out the correct Defined and Depends info, iterate > over all properties associated with the given symbol, similarly to was > done for selects. And for depends, rather than iterating over the > property, just use the direct dependency expression. > > CONFIG_FRAME_POINTER text, before: > Defined at lib/Kconfig.debug:323 > Depends on: DEBUG_KERNEL [=y] && (ARM [=y] || CRIS || M68K || FRV || UML || > AVR32 || SUPERH || BLACKFIN || MN10300 || METAG) || ARCH_WANT_FRAME_POINTERS > [=n] > > After: > Defined at lib/Kconfig.debug:323, arch/arm/Kconfig.debug:35 > Depends on: DEBUG_KERNEL [=y] && (ARM [=y] || CRIS || M68K || FRV || UML || > AVR32 || SUPERH || BLACKFIN || MN10300 || METAG) || ARCH_WANT_FRAME_POINTERS > [=n] || !THUMB2_KERNEL [=n] > > Removes now-unused function get_symbol_prop(). > > Signed-off-by: Gregory Fong <[email protected]> > [snip] -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

