mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 05:08:24 +00:00
i2c: lpc32xx: Rename probe function
This is part of the prep work for the migration to the driver model. What used to be the probe function is now called probe_chip. Signed-off-by: Liam Beguin <lbeguin@tycoint.com> Signed-off-by: Sylvain Lemieux <slemieux@tycoint.com>
This commit is contained in:
parent
5cf618ee60
commit
03d924ae76
1 changed files with 3 additions and 3 deletions
|
@ -105,7 +105,7 @@ static void _i2c_init(struct i2c_adapter *adap,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* I2C probe called by cmd_i2c when doing 'i2c probe'. */
|
/* I2C probe called by cmd_i2c when doing 'i2c probe'. */
|
||||||
static int lpc32xx_i2c_probe(struct i2c_adapter *adap, u8 dev)
|
static int lpc32xx_i2c_probe_chip(struct i2c_adapter *adap, u8 dev)
|
||||||
{
|
{
|
||||||
struct lpc32xx_i2c_registers *i2c = lpc32xx_i2c[adap->hwadapnr];
|
struct lpc32xx_i2c_registers *i2c = lpc32xx_i2c[adap->hwadapnr];
|
||||||
int stat;
|
int stat;
|
||||||
|
@ -246,14 +246,14 @@ static int lpc32xx_i2c_write(struct i2c_adapter *adap, u8 dev, uint addr,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_0, _i2c_init, lpc32xx_i2c_probe,
|
U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_0, _i2c_init, lpc32xx_i2c_probe_chip,
|
||||||
lpc32xx_i2c_read, lpc32xx_i2c_write,
|
lpc32xx_i2c_read, lpc32xx_i2c_write,
|
||||||
lpc32xx_i2c_set_bus_speed,
|
lpc32xx_i2c_set_bus_speed,
|
||||||
CONFIG_SYS_I2C_LPC32XX_SPEED,
|
CONFIG_SYS_I2C_LPC32XX_SPEED,
|
||||||
CONFIG_SYS_I2C_LPC32XX_SLAVE,
|
CONFIG_SYS_I2C_LPC32XX_SLAVE,
|
||||||
0)
|
0)
|
||||||
|
|
||||||
U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_1, _i2c_init, lpc32xx_i2c_probe,
|
U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_1, _i2c_init, lpc32xx_i2c_probe_chip,
|
||||||
lpc32xx_i2c_read, lpc32xx_i2c_write,
|
lpc32xx_i2c_read, lpc32xx_i2c_write,
|
||||||
lpc32xx_i2c_set_bus_speed,
|
lpc32xx_i2c_set_bus_speed,
|
||||||
CONFIG_SYS_I2C_LPC32XX_SPEED,
|
CONFIG_SYS_I2C_LPC32XX_SPEED,
|
||||||
|
|
Loading…
Add table
Reference in a new issue