diff options
| author | Jon Loeliger <jdl@jdl.com> | 2007-06-11 19:01:54 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-07-04 00:23:09 +0200 | 
| commit | 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0 (patch) | |
| tree | 1cd6a7f845d4522d9169e2c941a8919c80cf50d3 /common/cmd_i2c.c | |
| parent | a76adc8142c1d956385a109e0b70f9319ede4d66 (diff) | |
| download | olio-uboot-2014.01-65c450b47a62659d522cfa8f4fa1e4e5c60dccd0.tar.xz olio-uboot-2014.01-65c450b47a62659d522cfa8f4fa1e4e5c60dccd0.zip | |
common/cmd_[i-z]* : 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>
Diffstat (limited to 'common/cmd_i2c.c')
| -rw-r--r-- | common/cmd_i2c.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/common/cmd_i2c.c b/common/cmd_i2c.c index 755810d59..b9d9d332e 100644 --- a/common/cmd_i2c.c +++ b/common/cmd_i2c.c @@ -86,7 +86,7 @@  #include <i2c.h>  #include <asm/byteorder.h> -#if (CONFIG_COMMANDS & CFG_CMD_I2C) +#if (CONFIG_COMMANDS & CFG_CMD_I2C) || defined(CONFIG_CMD_I2C)  /* Display values from last command. @@ -657,7 +657,7 @@ int do_i2c_loop(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])   * The SDRAM command is separately configured because many   * (most?) embedded boards don't use SDRAM DIMMs.   */ -#if (CONFIG_COMMANDS & CFG_CMD_SDRAM) +#if (CONFIG_COMMANDS & CFG_CMD_SDRAM) || defined(CONFIG_CMD_SDRAM)  /*   * Syntax: @@ -938,7 +938,7 @@ int do_i2c(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  		return do_i2c_probe(cmdtp, flag, --argc, ++argv);  	if (!strncmp(argv[1], "lo", 2))  		return do_i2c_loop(cmdtp, flag, --argc, ++argv); -#if (CONFIG_COMMANDS & CFG_CMD_SDRAM) +#if (CONFIG_COMMANDS & CFG_CMD_SDRAM) || defined(CONFIG_CMD_SDRAM)  	if (!strncmp(argv[1], "sd", 2))  		return do_sdram(cmdtp, flag, --argc, ++argv);  #endif	/* CFG_CMD_SDRAM */ @@ -965,7 +965,7 @@ U_BOOT_CMD(  	"i2c crc32 chip address[.0, .1, .2] count - compute CRC32 checksum\n"  	"i2c probe - show devices on the I2C bus\n"  	"i2c loop chip address[.0, .1, .2] [# of objects] - looping read of device\n" -#if (CONFIG_COMMANDS & CFG_CMD_SDRAM) +#if (CONFIG_COMMANDS & CFG_CMD_SDRAM) || defined(CONFIG_CMD_SDRAM)  	"i2c sdram chip - print SDRAM configuration information\n"  #endif  /* CFG_CMD_SDRAM */  ); @@ -1016,7 +1016,7 @@ U_BOOT_CMD(  	"    - loop, reading a set of addresses\n"  ); -#if (CONFIG_COMMANDS & CFG_CMD_SDRAM) +#if (CONFIG_COMMANDS & CFG_CMD_SDRAM) || defined(CONFIG_CMD_SDRAM)  U_BOOT_CMD(  	isdram,	2,	1,	do_sdram,  	"isdram  - print SDRAM configuration information\n", |