diff options
Diffstat (limited to 'common/cmd_i2c.c')
| -rw-r--r-- | common/cmd_i2c.c | 28 | 
1 files changed, 14 insertions, 14 deletions
| diff --git a/common/cmd_i2c.c b/common/cmd_i2c.c index 8d287fe5f..84ecf4972 100644 --- a/common/cmd_i2c.c +++ b/common/cmd_i2c.c @@ -65,7 +65,7 @@   *   significant 1, 2, or 3 bits of address into the chip address byte.   *   This effectively makes one chip (logically) look like 2, 4, or   *   8 chips.  This is handled (awkwardly) by #defining - *   CFG_I2C_EEPROM_ADDR_OVERFLOW and using the .1 modifier on the + *   CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW and using the .1 modifier on the   *   {addr} field (since .1 is the default, it doesn't actually have to   *   be specified).  Examples: given a memory chip at I2C chip address   *   0x50, the following would happen... @@ -105,19 +105,19 @@ static uint	i2c_mm_last_alen;   * When multiple buses are present, the list is an array of bus-address   * pairs.  The following macros take care of this */ -#if defined(CFG_I2C_NOPROBES) +#if defined(CONFIG_SYS_I2C_NOPROBES)  #if defined(CONFIG_I2C_MULTI_BUS)  static struct  {  	uchar	bus;  	uchar	addr; -} i2c_no_probes[] = CFG_I2C_NOPROBES; +} i2c_no_probes[] = CONFIG_SYS_I2C_NOPROBES;  #define GET_BUS_NUM	i2c_get_bus_num()  #define COMPARE_BUS(b,i)	(i2c_no_probes[(i)].bus == (b))  #define COMPARE_ADDR(a,i)	(i2c_no_probes[(i)].addr == (a))  #define NO_PROBE_ADDR(i)	i2c_no_probes[(i)].addr  #else		/* single bus */ -static uchar i2c_no_probes[] = CFG_I2C_NOPROBES; +static uchar i2c_no_probes[] = CONFIG_SYS_I2C_NOPROBES;  #define GET_BUS_NUM	0  #define COMPARE_BUS(b,i)	((b) == 0)	/* Make compiler happy */  #define COMPARE_ADDR(a,i)	(i2c_no_probes[(i)] == (a)) @@ -129,7 +129,7 @@ static uchar i2c_no_probes[] = CFG_I2C_NOPROBES;  #if defined(CONFIG_I2C_MUX)  static I2C_MUX_DEVICE	*i2c_mux_devices = NULL; -static	int	i2c_mux_busid = CFG_MAX_I2C_BUS; +static	int	i2c_mux_busid = CONFIG_SYS_MAX_I2C_BUS;  DECLARE_GLOBAL_DATA_PTR; @@ -323,7 +323,7 @@ int do_i2c_mw ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  /*   * No write delay with FRAM devices.   */ -#if !defined(CFG_I2C_FRAM) +#if !defined(CONFIG_SYS_I2C_FRAM)  		udelay(11000);  #endif @@ -529,8 +529,8 @@ mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char *argv[])  #endif  				if (i2c_write(chip, addr, alen, (uchar *)&data, size) != 0)  					puts ("Error writing the chip.\n"); -#ifdef CFG_EEPROM_PAGE_WRITE_DELAY_MS -				udelay(CFG_EEPROM_PAGE_WRITE_DELAY_MS * 1000); +#ifdef CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS +				udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);  #endif  				if (incrflag)  					addr += size; @@ -552,14 +552,14 @@ mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char *argv[])  int do_i2c_probe (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  {  	int j; -#if defined(CFG_I2C_NOPROBES) +#if defined(CONFIG_SYS_I2C_NOPROBES)  	int k, skip;  	uchar bus = GET_BUS_NUM;  #endif	/* NOPROBES */  	puts ("Valid chip addresses:");  	for (j = 0; j < 128; j++) { -#if defined(CFG_I2C_NOPROBES) +#if defined(CONFIG_SYS_I2C_NOPROBES)  		skip = 0;  		for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {  			if (COMPARE_BUS(bus, k) && COMPARE_ADDR(j, k)) { @@ -575,7 +575,7 @@ int do_i2c_probe (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	}  	putc ('\n'); -#if defined(CFG_I2C_NOPROBES) +#if defined(CONFIG_SYS_I2C_NOPROBES)  	puts ("Excluded chip addresses:");  	for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {  		if (COMPARE_BUS(bus,k)) @@ -1194,7 +1194,7 @@ int do_sdram (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  #if defined(CONFIG_I2C_CMD_TREE)  int do_i2c_reset(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  { -	i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE); +	i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);  	return 0;  } @@ -1573,8 +1573,8 @@ int i2x_mux_select_mux(int bus)  	if ((gd->flags & GD_FLG_RELOC) != GD_FLG_RELOC) {  		/* select Default Mux Bus */ -#if defined(CFG_I2C_IVM_BUS) -		i2c_mux_ident_muxstring_f ((uchar *)CFG_I2C_IVM_BUS); +#if defined(CONFIG_SYS_I2C_IVM_BUS) +		i2c_mux_ident_muxstring_f ((uchar *)CONFIG_SYS_I2C_IVM_BUS);  #else  		{  		unsigned char *buf; |