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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
Uwe Kleine-König 2022-11-22 20:55:00 -08:00 committed by Jakub Kicinski
parent cb405c2a40
commit f72eed59ea
1 changed files with 2 additions and 3 deletions

View File

@ -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 = {
.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,
}; };