diff options
| author | Uwe Kleine-König <[email protected]> | 2023-05-05 12:11:36 +0000 |
|---|---|---|
| committer | Alexandre Belloni <[email protected]> | 2023-06-06 21:29:37 +0000 |
| commit | 31b0cecb4042d2676fd48f09379a19bc8b16eadd (patch) | |
| tree | fa6989d83d642924d3a2b701a384e496fbba1797 /drivers/rtc/rtc-abx80x.c | |
| parent | rtc: rv3032: constify pointers to hwmon_channel_info (diff) | |
| download | kernel-31b0cecb4042d2676fd48f09379a19bc8b16eadd.tar.gz kernel-31b0cecb4042d2676fd48f09379a19bc8b16eadd.zip | |
rtc: 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 <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Alexandre Belloni <[email protected]>
Diffstat (limited to 'drivers/rtc/rtc-abx80x.c')
| -rw-r--r-- | drivers/rtc/rtc-abx80x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-abx80x.c b/drivers/rtc/rtc-abx80x.c index f34a2e59cac7..e08d3181bd2a 100644 --- a/drivers/rtc/rtc-abx80x.c +++ b/drivers/rtc/rtc-abx80x.c @@ -992,7 +992,7 @@ static struct i2c_driver abx80x_driver = { .name = "rtc-abx80x", .of_match_table = of_match_ptr(abx80x_of_match), }, - .probe_new = abx80x_probe, + .probe = abx80x_probe, .id_table = abx80x_id, }; |
