lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
This is a compatibility step that allows both the older form
and the new form to co-exist for a while until the older can
be removed entirely.
All transformations are of the form:
Before:
#if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
After:
#if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
Signed-off-by:
Jon Loeliger <jdl@freescale.com>
Showing
- lib_arm/board.c 4 additions, 4 deletionslib_arm/board.c
- lib_avr32/board.c 1 addition, 1 deletionlib_avr32/board.c
- lib_blackfin/board.c 3 additions, 3 deletionslib_blackfin/board.c
- lib_generic/crc32.c 3 additions, 2 deletionslib_generic/crc32.c
- lib_i386/board.c 9 additions, 8 deletionslib_i386/board.c
- lib_m68k/board.c 10 additions, 10 deletionslib_m68k/board.c
- lib_microblaze/board.c 4 additions, 4 deletionslib_microblaze/board.c
- lib_mips/board.c 2 additions, 2 deletionslib_mips/board.c
Loading
Please register or sign in to comment