From: Liam Beguin Date: Tue, 14 Mar 2017 15:24:39 +0000 (-0400) Subject: i2c: lpc32xx: Rename probe function X-Git-Tag: v2017.05-rc1~7^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03d924ae7680f3d64215adf424c87540d89e7ca5;p=platform%2Fkernel%2Fu-boot.git 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 Signed-off-by: Sylvain Lemieux --- diff --git a/drivers/i2c/lpc32xx_i2c.c b/drivers/i2c/lpc32xx_i2c.c index b0167ab..404fd53 100644 --- a/drivers/i2c/lpc32xx_i2c.c +++ b/drivers/i2c/lpc32xx_i2c.c @@ -105,7 +105,7 @@ static void _i2c_init(struct i2c_adapter *adap, } /* 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]; int stat; @@ -246,14 +246,14 @@ static int lpc32xx_i2c_write(struct i2c_adapter *adap, u8 dev, uint addr, 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_set_bus_speed, CONFIG_SYS_I2C_LPC32XX_SPEED, CONFIG_SYS_I2C_LPC32XX_SLAVE, 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_set_bus_speed, CONFIG_SYS_I2C_LPC32XX_SPEED,