diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2023-05-30 07:17:26 +0200 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2023-06-01 16:42:28 +0200 |
commit | bcfa8e33064f1357e60a7c056a2e51cc5928d629 (patch) | |
tree | 464a2d667e5ffc35a681bceb949e8aec3d8c71cd /drivers/extcon/extcon-fsa9480.c | |
parent | extcon: Drop unneeded assignments (diff) | |
download | linux-bcfa8e33064f1357e60a7c056a2e51cc5928d629.tar.xz linux-bcfa8e33064f1357e60a7c056a2e51cc5928d629.zip |
extcon: Switch i2c drivers back to use .probe()
After commit b8a1a4cd5a98 ("i2c: Provide a temporary .probe_new()
call-back type"), all drivers being converted to .probe_new() and then
03c835f498b5 ("i2c: Switch .probe() to not take an id parameter")
convert back to (the new) .probe() to be able to eventually drop
.probe_new() from struct i2c_driver.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon-fsa9480.c')
-rw-r--r-- | drivers/extcon/extcon-fsa9480.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-fsa9480.c b/drivers/extcon/extcon-fsa9480.c index e8b2671eb29b..e458ce0c45ab 100644 --- a/drivers/extcon/extcon-fsa9480.c +++ b/drivers/extcon/extcon-fsa9480.c @@ -369,7 +369,7 @@ static struct i2c_driver fsa9480_i2c_driver = { .pm = &fsa9480_pm_ops, .of_match_table = fsa9480_of_match, }, - .probe_new = fsa9480_probe, + .probe = fsa9480_probe, .id_table = fsa9480_id, }; |