Skip to content

Commit

Permalink
misc: ds1682: Convert to i2c's .probe_new()
Browse files Browse the repository at this point in the history
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-487-uwe@kleine-koenig.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Uwe Kleine-König authored and Greg Kroah-Hartman committed Nov 23, 2022
1 parent 781edb0 commit 3127a86
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/misc/ds1682.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,7 @@ static const struct bin_attribute ds1682_eeprom_attr = {
/*
* Called when a ds1682 device is matched with this driver
*/
static int ds1682_probe(struct i2c_client *client,
const struct i2c_device_id *id)
static int ds1682_probe(struct i2c_client *client)
{
int rc;

Expand Down Expand Up @@ -251,7 +250,7 @@ static struct i2c_driver ds1682_driver = {
.name = "ds1682",
.of_match_table = ds1682_of_match,
},
.probe = ds1682_probe,
.probe_new = ds1682_probe,
.remove = ds1682_remove,
.id_table = ds1682_id,
};
Expand Down

0 comments on commit 3127a86

Please sign in to comment.