net/: 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
- net/bootp.c 13 additions, 13 deletionsnet/bootp.c
- net/bootp.h 1 addition, 1 deletionnet/bootp.h
- net/eth.c 4 additions, 4 deletionsnet/eth.c
- net/net.c 30 additions, 30 deletionsnet/net.c
- net/nfs.c 2 additions, 1 deletionnet/nfs.c
- net/rarp.c 2 additions, 2 deletionsnet/rarp.c
- net/sntp.c 3 additions, 2 deletionsnet/sntp.c
- net/tftp.c 1 addition, 1 deletionnet/tftp.c
Loading
Please register or sign in to comment