aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/tuners/tda18212.c
diff options
context:
space:
mode:
authorGravatar Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 2023-05-14 14:04:07 +0200
committerGravatar Hans Verkuil <hverkuil-cisco@xs4all.nl> 2023-05-25 16:21:21 +0200
commitaaeb31c00e61f6bdc2e4a3c2c491c5455ed3f7b5 (patch)
treef47c22aa2c5721fdffc8486a1dc7b46229624532 /drivers/media/tuners/tda18212.c
parentmedia: Add common header file with JPEG marker definitions (diff)
downloadlinux-aaeb31c00e61f6bdc2e4a3c2c491c5455ed3f7b5.tar.gz
linux-aaeb31c00e61f6bdc2e4a3c2c491c5455ed3f7b5.tar.bz2
linux-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/tuners/tda18212.c')
-rw-r--r--drivers/media/tuners/tda18212.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/tuners/tda18212.c b/drivers/media/tuners/tda18212.c
index 5fdf05a97415..8d742bd61df0 100644
--- a/drivers/media/tuners/tda18212.c
+++ b/drivers/media/tuners/tda18212.c
@@ -263,7 +263,7 @@ static struct i2c_driver tda18212_driver = {
.driver = {
.name = "tda18212",
},
- .probe_new = tda18212_probe,
+ .probe = tda18212_probe,
.remove = tda18212_remove,
.id_table = tda18212_id,
};