igb: convert to use i2c_new_client_device()
Move away from the deprecated API and return the shiny new ERRPTR where useful. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
adde556552
commit
07eaf53adb
@@ -198,11 +198,11 @@ int igb_sysfs_init(struct igb_adapter *adapter)
|
||||
}
|
||||
|
||||
/* init i2c_client */
|
||||
client = i2c_new_device(&adapter->i2c_adap, &i350_sensor_info);
|
||||
if (client == NULL) {
|
||||
client = i2c_new_client_device(&adapter->i2c_adap, &i350_sensor_info);
|
||||
if (IS_ERR(client)) {
|
||||
dev_info(&adapter->pdev->dev,
|
||||
"Failed to create new i2c device.\n");
|
||||
rc = -ENODEV;
|
||||
rc = PTR_ERR(client);
|
||||
goto exit;
|
||||
}
|
||||
adapter->i2c_client = client;
|
||||
|
Reference in New Issue
Block a user