ipmi: use simple i2c probe function

The i2c probe functions here don't use the id information provided in
their second argument, so the single-parameter i2c probe function
("probe_new") can be used instead.

This avoids scanning the identifier tables during probes.

Signed-off-by: Stephen Kitt <steve@sk2.org>
Message-Id: <20220324171159.544565-1-steve@sk2.org>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
This commit is contained in:
Stephen Kitt 2022-03-24 18:11:59 +01:00 committed by Corey Minyard
parent d5d91586be
commit 0924c5a0cb
3 changed files with 6 additions and 8 deletions

View File

@ -299,8 +299,7 @@ static int ipmb_slave_cb(struct i2c_client *client,
return 0;
}
static int ipmb_probe(struct i2c_client *client,
const struct i2c_device_id *id)
static int ipmb_probe(struct i2c_client *client)
{
struct ipmb_dev *ipmb_dev;
int ret;
@ -369,7 +368,7 @@ static struct i2c_driver ipmb_driver = {
.name = "ipmb-dev",
.acpi_match_table = ACPI_PTR(acpi_ipmb_id),
},
.probe = ipmb_probe,
.probe_new = ipmb_probe,
.remove = ipmb_remove,
.id_table = ipmb_id,
};

View File

@ -442,8 +442,7 @@ static int ipmi_ipmb_remove(struct i2c_client *client)
return 0;
}
static int ipmi_ipmb_probe(struct i2c_client *client,
const struct i2c_device_id *id)
static int ipmi_ipmb_probe(struct i2c_client *client)
{
struct device *dev = &client->dev;
struct ipmi_ipmb_dev *iidev;
@ -570,7 +569,7 @@ static struct i2c_driver ipmi_ipmb_driver = {
.name = DEVICE_NAME,
.of_match_table = of_ipmi_ipmb_match,
},
.probe = ipmi_ipmb_probe,
.probe_new = ipmi_ipmb_probe,
.remove = ipmi_ipmb_remove,
.id_table = ipmi_ipmb_id,
};

View File

@ -1619,7 +1619,7 @@ static int ssif_check_and_remove(struct i2c_client *client,
return 0;
}
static int ssif_probe(struct i2c_client *client, const struct i2c_device_id *id)
static int ssif_probe(struct i2c_client *client)
{
unsigned char msg[3];
unsigned char *resp;
@ -2037,7 +2037,7 @@ static struct i2c_driver ssif_i2c_driver = {
.driver = {
.name = DEVICE_NAME
},
.probe = ssif_probe,
.probe_new = ssif_probe,
.remove = ssif_remove,
.alert = ssif_alert,
.id_table = ssif_id,