diff options
author | Uwe Kleine-König <[email protected]> | 2022-11-18 23:45:12 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2022-11-22 17:33:27 +0100 |
commit | b5583ea8b9ea659241e3f0cb8c9ca56f9a9630b3 (patch) | |
tree | 009a75c6d781a4728884e47024c6324a9e78e92b | |
parent | 3646730ee44f42dd91619e30c917c0140853a948 (diff) |
usb: typec: hd3ss3220: 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: Uwe Kleine-König <[email protected]>
Reviewed-by: Heikki Krogerus <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/typec/hd3ss3220.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/typec/hd3ss3220.c b/drivers/usb/typec/hd3ss3220.c index 2a58185fb14c..f128664cb130 100644 --- a/drivers/usb/typec/hd3ss3220.c +++ b/drivers/usb/typec/hd3ss3220.c @@ -148,8 +148,7 @@ static const struct regmap_config config = { .max_register = 0x0A, }; -static int hd3ss3220_probe(struct i2c_client *client, - const struct i2c_device_id *id) +static int hd3ss3220_probe(struct i2c_client *client) { struct typec_capability typec_cap = { }; struct hd3ss3220 *hd3ss3220; @@ -264,7 +263,7 @@ static struct i2c_driver hd3ss3220_driver = { .name = "hd3ss3220", .of_match_table = of_match_ptr(dev_ids), }, - .probe = hd3ss3220_probe, + .probe_new = hd3ss3220_probe, .remove = hd3ss3220_remove, }; |