mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-05 03:44:03 +08:00
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:
parent
cb405c2a40
commit
f72eed59ea
@ -231,8 +231,7 @@ static const struct nfc_phy_ops i2c_phy_ops = {
|
||||
.disable = microread_i2c_disable,
|
||||
};
|
||||
|
||||
static int microread_i2c_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
static int microread_i2c_probe(struct i2c_client *client)
|
||||
{
|
||||
struct microread_i2c_phy *phy;
|
||||
int r;
|
||||
@ -287,7 +286,7 @@ static struct i2c_driver microread_i2c_driver = {
|
||||
.driver = {
|
||||
.name = MICROREAD_I2C_DRIVER_NAME,
|
||||
},
|
||||
.probe = microread_i2c_probe,
|
||||
.probe_new = microread_i2c_probe,
|
||||
.remove = microread_i2c_remove,
|
||||
.id_table = microread_i2c_id,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user