Commit b4a339ba authored by Wolfram Sang's avatar Wolfram Sang Committed by Jonathan Cameron

iio: pressure: hp03: convert to i2c_new_dummy_device

Move from i2c_new_dummy() to i2c_new_dummy_device(), so we now get an
ERRPTR which we use in error handling.
Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 48cfd4ef
...@@ -243,10 +243,10 @@ static int hp03_probe(struct i2c_client *client, ...@@ -243,10 +243,10 @@ static int hp03_probe(struct i2c_client *client,
* which has it's dedicated I2C address and contains * which has it's dedicated I2C address and contains
* the calibration constants for the sensor. * the calibration constants for the sensor.
*/ */
priv->eeprom_client = i2c_new_dummy(client->adapter, HP03_EEPROM_ADDR); priv->eeprom_client = i2c_new_dummy_device(client->adapter, HP03_EEPROM_ADDR);
if (!priv->eeprom_client) { if (IS_ERR(priv->eeprom_client)) {
dev_err(dev, "New EEPROM I2C device failed\n"); dev_err(dev, "New EEPROM I2C device failed\n");
return -ENODEV; return PTR_ERR(priv->eeprom_client);
} }
priv->eeprom_regmap = regmap_init_i2c(priv->eeprom_client, priv->eeprom_regmap = regmap_init_i2c(priv->eeprom_client,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment