Commit 99b0cb3f authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Greg Kroah-Hartman
Browse files

misc: eeprom/max6875: 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-490-uwe@kleine-koenig.org


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 327e1ad1
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -130,8 +130,7 @@ static const struct bin_attribute user_eeprom_attr = {
	.read = max6875_read,
};

static int max6875_probe(struct i2c_client *client,
			 const struct i2c_device_id *id)
static int max6875_probe(struct i2c_client *client)
{
	struct i2c_adapter *adapter = client->adapter;
	struct max6875_data *data;
@@ -193,7 +192,7 @@ static struct i2c_driver max6875_driver = {
	.driver = {
		.name	= "max6875",
	},
	.probe		= max6875_probe,
	.probe_new	= max6875_probe,
	.remove		= max6875_remove,
	.id_table	= max6875_id,
};