media: dvb-frontends/si2168: 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:
parent
3be25b9ee3
commit
c7c631957b
|
@ -672,8 +672,7 @@ static const struct dvb_frontend_ops si2168_ops = {
|
||||||
.read_status = si2168_read_status,
|
.read_status = si2168_read_status,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int si2168_probe(struct i2c_client *client,
|
static int si2168_probe(struct i2c_client *client)
|
||||||
const struct i2c_device_id *id)
|
|
||||||
{
|
{
|
||||||
struct si2168_config *config = client->dev.platform_data;
|
struct si2168_config *config = client->dev.platform_data;
|
||||||
struct si2168_dev *dev;
|
struct si2168_dev *dev;
|
||||||
|
@ -799,7 +798,7 @@ static struct i2c_driver si2168_driver = {
|
||||||
.name = "si2168",
|
.name = "si2168",
|
||||||
.suppress_bind_attrs = true,
|
.suppress_bind_attrs = true,
|
||||||
},
|
},
|
||||||
.probe = si2168_probe,
|
.probe_new = si2168_probe,
|
||||||
.remove = si2168_remove,
|
.remove = si2168_remove,
|
||||||
.id_table = si2168_id_table,
|
.id_table = si2168_id_table,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue