aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/i2c/ccs/ccs-core.c
diff options
context:
space:
mode:
authorUwe Kleine-König <[email protected]>2023-05-14 12:04:07 +0000
committerHans Verkuil <[email protected]>2023-05-25 14:21:21 +0000
commitaaeb31c00e61f6bdc2e4a3c2c491c5455ed3f7b5 (patch)
treef47c22aa2c5721fdffc8486a1dc7b46229624532 /drivers/media/i2c/ccs/ccs-core.c
parentmedia: Add common header file with JPEG marker definitions (diff)
downloadkernel-aaeb31c00e61f6bdc2e4a3c2c491c5455ed3f7b5.tar.gz
kernel-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 <[email protected]> Signed-off-by: Hans Verkuil <[email protected]>
Diffstat (limited to 'drivers/media/i2c/ccs/ccs-core.c')
-rw-r--r--drivers/media/i2c/ccs/ccs-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/ccs/ccs-core.c b/drivers/media/i2c/ccs/ccs-core.c
index 559a415fd827..49e0d9a09530 100644
--- a/drivers/media/i2c/ccs/ccs-core.c
+++ b/drivers/media/i2c/ccs/ccs-core.c
@@ -3731,7 +3731,7 @@ static struct i2c_driver ccs_i2c_driver = {
.name = CCS_NAME,
.pm = &ccs_pm_ops,
},
- .probe_new = ccs_probe,
+ .probe = ccs_probe,
.remove = ccs_remove,
};