mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 03:57:34 -04:00
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:
committed by
Greg Kroah-Hartman
parent
3c03dad765
commit
2ac99039c5
@@ -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,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user