mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
media: tuners/mxl301rf: 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> Tested-by: Akihiro Tsukada <tskd08@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
9ebd054327
commit
35923dcd48
@ -283,8 +283,7 @@ static const struct dvb_tuner_ops mxl301rf_ops = {
|
||||
};
|
||||
|
||||
|
||||
static int mxl301rf_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
static int mxl301rf_probe(struct i2c_client *client)
|
||||
{
|
||||
struct mxl301rf_state *state;
|
||||
struct mxl301rf_config *cfg;
|
||||
@ -327,7 +326,7 @@ static struct i2c_driver mxl301rf_driver = {
|
||||
.driver = {
|
||||
.name = "mxl301rf",
|
||||
},
|
||||
.probe = mxl301rf_probe,
|
||||
.probe_new = mxl301rf_probe,
|
||||
.remove = mxl301rf_remove,
|
||||
.id_table = mxl301rf_id,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user