diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /cpu/ppc4xx/i2c.c | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/ppc4xx/i2c.c')
| -rw-r--r-- | cpu/ppc4xx/i2c.c | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/cpu/ppc4xx/i2c.c b/cpu/ppc4xx/i2c.c index d8be2cef1..0deb14993 100644 --- a/cpu/ppc4xx/i2c.c +++ b/cpu/ppc4xx/i2c.c @@ -42,8 +42,8 @@ DECLARE_GLOBAL_DATA_PTR;   * runs from ROM, and we can't switch buses because we can't modify   * the global variables.   */ -#ifdef CFG_SPD_BUS_NUM -static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = CFG_SPD_BUS_NUM; +#ifdef CONFIG_SYS_SPD_BUS_NUM +static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = CONFIG_SYS_SPD_BUS_NUM;  #else  static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = 0;  #endif @@ -95,14 +95,14 @@ void i2c_init(int speed, int slaveadd)  	int val, divisor;  	int bus; -#ifdef CFG_I2C_INIT_BOARD +#ifdef CONFIG_SYS_I2C_INIT_BOARD  	/* call board specific i2c bus reset routine before accessing the   */  	/* environment, which might be in a chip on that bus. For details   */  	/* about this problem see doc/I2C_Edge_Conditions.                  */  	i2c_init_board();  #endif -	for (bus = 0; bus < CFG_MAX_I2C_BUS; bus++) { +	for (bus = 0; bus < CONFIG_SYS_MAX_I2C_BUS; bus++) {  		I2C_SET_BUS(bus);  		/* Handle possible failed I2C state */ @@ -161,7 +161,7 @@ void i2c_init(int speed, int slaveadd)  	}  	/* set to SPD bus as default bus upon powerup */ -	I2C_SET_BUS(CFG_SPD_BUS_NUM); +	I2C_SET_BUS(CONFIG_SYS_SPD_BUS_NUM);  }  /* @@ -361,7 +361,7 @@ int i2c_read(uchar chip, uint addr, int alen, uchar * buffer, int len)  	} -#ifdef CFG_I2C_EEPROM_ADDR_OVERFLOW +#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW  	/*  	 * EEPROM chips that implement "address overflow" are ones  	 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of @@ -374,7 +374,7 @@ int i2c_read(uchar chip, uint addr, int alen, uchar * buffer, int len)  	 * hidden in the chip address.  	 */  	if (alen > 0) -		chip |= ((addr >> (alen * 8)) & CFG_I2C_EEPROM_ADDR_OVERFLOW); +		chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);  #endif  	if ((ret = i2c_transfer(1, chip<<1, &xaddr[4-alen], alen, buffer, len)) != 0) {  		if (gd->have_console) @@ -401,7 +401,7 @@ int i2c_write(uchar chip, uint addr, int alen, uchar * buffer, int len)  		xaddr[3] = addr & 0xFF;  	} -#ifdef CFG_I2C_EEPROM_ADDR_OVERFLOW +#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW  	/*  	 * EEPROM chips that implement "address overflow" are ones  	 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of @@ -414,7 +414,7 @@ int i2c_write(uchar chip, uint addr, int alen, uchar * buffer, int len)  	 * hidden in the chip address.  	 */  	if (alen > 0) -		chip |= ((addr >> (alen * 8)) & CFG_I2C_EEPROM_ADDR_OVERFLOW); +		chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);  #endif  	return (i2c_transfer(0, chip<<1, &xaddr[4-alen], alen, buffer, len ) != 0); @@ -451,7 +451,7 @@ unsigned int i2c_get_bus_num(void)  int i2c_set_bus_num(unsigned int bus)  { -	if (bus >= CFG_MAX_I2C_BUS) +	if (bus >= CONFIG_SYS_MAX_I2C_BUS)  		return -1;  	i2c_bus_num = bus; @@ -463,12 +463,12 @@ int i2c_set_bus_num(unsigned int bus)  /* TODO: add 100/400k switching */  unsigned int i2c_get_bus_speed(void)  { -	return CFG_I2C_SPEED; +	return CONFIG_SYS_I2C_SPEED;  }  int i2c_set_bus_speed(unsigned int speed)  { -	if (speed != CFG_I2C_SPEED) +	if (speed != CONFIG_SYS_I2C_SPEED)  		return -1;  	return 0; |