eeprom: ee1004: Switch to i2c probe_new callback

Switch to the new i2c_driver probe callback version.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Link: https://lore.kernel.org/r/eb5be659-7427-46c5-66c2-b39650e08ea3@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Heiner Kallweit 2021-05-24 22:13:52 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель 3c03dad765
Коммит 2ac99039c5
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -163,8 +163,7 @@ static struct bin_attribute *ee1004_attrs[] = {
BIN_ATTRIBUTE_GROUPS(ee1004);
static int ee1004_probe(struct i2c_client *client,
const struct i2c_device_id *id)
static int ee1004_probe(struct i2c_client *client)
{
int err, cnr = 0;
@ -246,7 +245,7 @@ static struct i2c_driver ee1004_driver = {
.name = "ee1004",
.dev_groups = ee1004_groups,
},
.probe = ee1004_probe,
.probe_new = ee1004_probe,
.remove = ee1004_remove,
.id_table = ee1004_ids,
};