diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2023-05-14 14:04:07 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2023-05-25 16:21:21 +0200 |
commit | aaeb31c00e61f6bdc2e4a3c2c491c5455ed3f7b5 (patch) | |
tree | f47c22aa2c5721fdffc8486a1dc7b46229624532 /drivers/media/i2c/sony-btf-mpx.c | |
parent | 72a6127e9305ccf517ca962533c90c75bac39a57 (diff) | |
download | lwn-aaeb31c00e61f6bdc2e4a3c2c491c5455ed3f7b5.tar.gz lwn-aaeb31c00e61f6bdc2e4a3c2c491c5455ed3f7b5.zip |
media: 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
commit 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: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'drivers/media/i2c/sony-btf-mpx.c')
-rw-r--r-- | drivers/media/i2c/sony-btf-mpx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/sony-btf-mpx.c b/drivers/media/i2c/sony-btf-mpx.c index eef6c8a7c9c9..0f53834f3ae4 100644 --- a/drivers/media/i2c/sony-btf-mpx.c +++ b/drivers/media/i2c/sony-btf-mpx.c @@ -375,7 +375,7 @@ static struct i2c_driver sony_btf_mpx_driver = { .driver = { .name = "sony-btf-mpx", }, - .probe_new = sony_btf_mpx_probe, + .probe = sony_btf_mpx_probe, .remove = sony_btf_mpx_remove, .id_table = sony_btf_mpx_id, }; |