Commit 3684d803 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Dmitry Torokhov

Input: rmi_smbus - 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>
Link: https://lore.kernel.org/r/20221118224540.619276-225-uwe@kleine-koenig.orgSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent f4ae4f03
...@@ -268,8 +268,7 @@ static const struct rmi_transport_ops rmi_smb_ops = { ...@@ -268,8 +268,7 @@ static const struct rmi_transport_ops rmi_smb_ops = {
.reset = rmi_smb_reset, .reset = rmi_smb_reset,
}; };
static int rmi_smb_probe(struct i2c_client *client, static int rmi_smb_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct rmi_device_platform_data *pdata = dev_get_platdata(&client->dev); struct rmi_device_platform_data *pdata = dev_get_platdata(&client->dev);
struct rmi_smb_xport *rmi_smb; struct rmi_smb_xport *rmi_smb;
...@@ -420,7 +419,7 @@ static struct i2c_driver rmi_smb_driver = { ...@@ -420,7 +419,7 @@ static struct i2c_driver rmi_smb_driver = {
.pm = &rmi_smb_pm, .pm = &rmi_smb_pm,
}, },
.id_table = rmi_id, .id_table = rmi_id,
.probe = rmi_smb_probe, .probe_new = rmi_smb_probe,
.remove = rmi_smb_remove, .remove = rmi_smb_remove,
}; };
......
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