diff options
| author | Peter Tyser <ptyser@xes-inc.com> | 2009-04-18 22:34:02 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-06-12 20:39:46 +0200 | 
| commit | d48eb5131d287f52bb85b4c58c8680a2e8e3b641 (patch) | |
| tree | ef259501574616da98618f83823ed4588cf900fb /common/cmd_i2c.c | |
| parent | 655b34a78adf60ef260981688837904208883ae9 (diff) | |
| download | olio-uboot-2014.01-d48eb5131d287f52bb85b4c58c8680a2e8e3b641.tar.xz olio-uboot-2014.01-d48eb5131d287f52bb85b4c58c8680a2e8e3b641.zip | |
i2c: Remove deprecated individual i2c commands
The following individual I2C commands have been removed: imd, imm, inm,
imw, icrc32, iprobe, iloop, isdram.
The functionality of the individual commands is still available via
the 'i2c' command.
This change only has an impact on those boards which did not have
CONFIG_I2C_CMD_TREE defined.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'common/cmd_i2c.c')
| -rw-r--r-- | common/cmd_i2c.c | 58 | 
1 files changed, 0 insertions, 58 deletions
| diff --git a/common/cmd_i2c.c b/common/cmd_i2c.c index c071df732..fd9f9a44f 100644 --- a/common/cmd_i2c.c +++ b/common/cmd_i2c.c @@ -1204,7 +1204,6 @@ int do_sdram (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  }  #endif -#if defined(CONFIG_I2C_CMD_TREE)  int do_i2c_reset(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  {  	i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); @@ -1314,11 +1313,9 @@ int do_i2c(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  		cmd_usage(cmdtp);  	return 0;  } -#endif  /* CONFIG_I2C_CMD_TREE */  /***************************************************/ -#if defined(CONFIG_I2C_CMD_TREE)  U_BOOT_CMD(  	i2c, 6, 1, do_i2c,  	"I2C sub-system", @@ -1341,61 +1338,6 @@ U_BOOT_CMD(  	"i2c sdram chip - print SDRAM configuration information\n"  #endif  ); -#endif /* CONFIG_I2C_CMD_TREE */ -U_BOOT_CMD( -	imd,	4,	1,	do_i2c_md,		\ -	"i2c memory display",				\ -	"chip address[.0, .1, .2] [# of objects]\n    - i2c memory display\n" \ -); - -U_BOOT_CMD( -	imm,	3,	1,	do_i2c_mm, -	"i2c memory modify (auto-incrementing)", -	"chip address[.0, .1, .2]\n" -	"    - memory modify, auto increment address\n" -); -U_BOOT_CMD( -	inm,	3,	1,	do_i2c_nm, -	"memory modify (constant address)", -	"chip address[.0, .1, .2]\n    - memory modify, read and keep address\n" -); - -U_BOOT_CMD( -	imw,	5,	1,	do_i2c_mw, -	"memory write (fill)", -	"chip address[.0, .1, .2] value [count]\n    - memory write (fill)\n" -); - -U_BOOT_CMD( -	icrc32,	5,	1,	do_i2c_crc, -	"checksum calculation", -	"chip address[.0, .1, .2] count\n    - compute CRC32 checksum\n" -); - -U_BOOT_CMD( -	iprobe,	1,	1,	do_i2c_probe, -	"probe to discover valid I2C chip addresses", -	"\n    -discover valid I2C chip addresses\n" -); - -/* - * Require full name for "iloop" because it is an infinite loop! - */ -U_BOOT_CMD( -	iloop,	5,	1,	do_i2c_loop, -	"infinite loop on address range", -	"chip address[.0, .1, .2] [# of objects]\n" -	"    - loop, reading a set of addresses\n" -); - -#if defined(CONFIG_CMD_SDRAM) -U_BOOT_CMD( -	isdram,	2,	1,	do_sdram, -	"print SDRAM configuration information", -	"chip\n    - print SDRAM configuration information\n" -	"      (valid chip values 50..57)\n" -); -#endif  #if defined(CONFIG_I2C_MUX) |