mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 14:34:13 -04:00
media: i2c/s5k4ecgx: Convert to i2c's .probe_new()
The probe function doesn't make use of the i2c_device_id * parameter so it can be trivially converted. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
committed by
Hans Verkuil
parent
e9d8b2bb47
commit
3461898ded
@@ -929,8 +929,7 @@ static int s5k4ecgx_init_v4l2_ctrls(struct s5k4ecgx *priv)
|
||||
return 0;
|
||||
};
|
||||
|
||||
static int s5k4ecgx_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
static int s5k4ecgx_probe(struct i2c_client *client)
|
||||
{
|
||||
struct s5k4ecgx_platform_data *pdata = client->dev.platform_data;
|
||||
struct v4l2_subdev *sd;
|
||||
@@ -1018,7 +1017,7 @@ static struct i2c_driver v4l2_i2c_driver = {
|
||||
.driver = {
|
||||
.name = S5K4ECGX_DRIVER_NAME,
|
||||
},
|
||||
.probe = s5k4ecgx_probe,
|
||||
.probe_new = s5k4ecgx_probe,
|
||||
.remove = s5k4ecgx_remove,
|
||||
.id_table = s5k4ecgx_id,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user