diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2023-05-20 19:21:04 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-05-22 12:41:57 +0200 |
commit | efc3001f8b44bf5da0f178bd726a73c73f370707 (patch) | |
tree | 831fade45ee8df29892f6113a2221c03d3823044 /drivers/nfc/fdp | |
parent | net/tcp: refactor tcp_inet6_sk() (diff) | |
download | linux-efc3001f8b44bf5da0f178bd726a73c73f370707.tar.xz linux-efc3001f8b44bf5da0f178bd726a73c73f370707.zip |
nfc: 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>
Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc/fdp')
-rw-r--r-- | drivers/nfc/fdp/i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/fdp/i2c.c b/drivers/nfc/fdp/i2c.c index 1e0f2297f9c6..c1896a1d978c 100644 --- a/drivers/nfc/fdp/i2c.c +++ b/drivers/nfc/fdp/i2c.c @@ -359,7 +359,7 @@ static struct i2c_driver fdp_nci_i2c_driver = { .name = FDP_I2C_DRIVER_NAME, .acpi_match_table = fdp_nci_i2c_acpi_match, }, - .probe_new = fdp_nci_i2c_probe, + .probe = fdp_nci_i2c_probe, .remove = fdp_nci_i2c_remove, }; module_i2c_driver(fdp_nci_i2c_driver); |