Commit f72eed59 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Jakub Kicinski

nfc: microread: Convert to i2c's .probe_new()

The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent cb405c2a
...@@ -231,8 +231,7 @@ static const struct nfc_phy_ops i2c_phy_ops = { ...@@ -231,8 +231,7 @@ static const struct nfc_phy_ops i2c_phy_ops = {
.disable = microread_i2c_disable, .disable = microread_i2c_disable,
}; };
static int microread_i2c_probe(struct i2c_client *client, static int microread_i2c_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct microread_i2c_phy *phy; struct microread_i2c_phy *phy;
int r; int r;
...@@ -287,7 +286,7 @@ static struct i2c_driver microread_i2c_driver = { ...@@ -287,7 +286,7 @@ static struct i2c_driver microread_i2c_driver = {
.driver = { .driver = {
.name = MICROREAD_I2C_DRIVER_NAME, .name = MICROREAD_I2C_DRIVER_NAME,
}, },
.probe = microread_i2c_probe, .probe_new = microread_i2c_probe,
.remove = microread_i2c_remove, .remove = microread_i2c_remove,
.id_table = microread_i2c_id, .id_table = microread_i2c_id,
}; };
......
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