mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 19:05:39 +00:00
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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20221118224540.619276-225-uwe@kleine-koenig.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
f4ae4f03f9
commit
3684d80339
@ -268,8 +268,7 @@ static const struct rmi_transport_ops rmi_smb_ops = {
|
||||
.reset = rmi_smb_reset,
|
||||
};
|
||||
|
||||
static int rmi_smb_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
static int rmi_smb_probe(struct i2c_client *client)
|
||||
{
|
||||
struct rmi_device_platform_data *pdata = dev_get_platdata(&client->dev);
|
||||
struct rmi_smb_xport *rmi_smb;
|
||||
@ -420,7 +419,7 @@ static struct i2c_driver rmi_smb_driver = {
|
||||
.pm = &rmi_smb_pm,
|
||||
},
|
||||
.id_table = rmi_id,
|
||||
.probe = rmi_smb_probe,
|
||||
.probe_new = rmi_smb_probe,
|
||||
.remove = rmi_smb_remove,
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user