diff options
Diffstat (limited to 'common/cmd_eeprom.c')
| -rw-r--r-- | common/cmd_eeprom.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/common/cmd_eeprom.c b/common/cmd_eeprom.c index 0a7831994..5193b13ab 100644 --- a/common/cmd_eeprom.c +++ b/common/cmd_eeprom.c @@ -376,16 +376,16 @@ void eeprom_init  (void)  #if (CONFIG_COMMANDS & CFG_CMD_EEPROM)  #ifdef CFG_I2C_MULTI_EEPROMS -cmd_tbl_t U_BOOT_CMD(EEPROM) = MK_CMD_ENTRY( -	"eeprom",	6,	1,	do_eeprom, +U_BOOT_CMD( +	eeprom,	6,	1,	do_eeprom,  	"eeprom  - EEPROM sub-system\n",  	"read  devaddr addr off cnt\n"  	"eeprom write devaddr addr off cnt\n"  	"       - read/write `cnt' bytes from `devaddr` EEPROM at offset `off'\n"  );  #else /* One EEPROM */ -cmd_tbl_t U_BOOT_CMD(EEPROM) = MK_CMD_ENTRY( -	"eeprom",	5,	1,	do_eeprom, +U_BOOT_CMD( +	eeprom,	5,	1,	do_eeprom,  	"eeprom  - EEPROM sub-system\n",  	"read  addr off cnt\n"  	"eeprom write addr off cnt\n" |