Skip to content
Snippets Groups Projects
Commit f48070fe authored by Jon Loeliger's avatar Jon Loeliger Committed by Wolfgang Denk
Browse files

cpu/mpc*/ : 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: default avatarJon Loeliger <jdl@freescale.com>
parent 0c505db0
No related branches found
No related tags found
No related merge requests found
Showing
with 64 additions and 63 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment