Commit 14b9e482 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Hans Verkuil
Browse files

media: tuners/tda18250: 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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 1d3264c1
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -741,8 +741,7 @@ static const struct dvb_tuner_ops tda18250_ops = {
	.sleep = tda18250_sleep,
};

static int tda18250_probe(struct i2c_client *client,
		const struct i2c_device_id *id)
static int tda18250_probe(struct i2c_client *client)
{
	struct tda18250_config *cfg = client->dev.platform_data;
	struct dvb_frontend *fe = cfg->fe;
@@ -878,7 +877,7 @@ static struct i2c_driver tda18250_driver = {
	.driver = {
		.name	= "tda18250",
	},
	.probe		= tda18250_probe,
	.probe_new	= tda18250_probe,
	.remove		= tda18250_remove,
	.id_table	= tda18250_id_table,
};