mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-20 01:24:39 +08:00
drm/i2c/tda9950: 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> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Signed-off-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20221118224540.619276-41-uwe@kleine-koenig.org
This commit is contained in:
parent
29ef7605e2
commit
1cff174aa1
@ -375,8 +375,7 @@ static void tda9950_cec_del(void *data)
|
||||
cec_delete_adapter(priv->adap);
|
||||
}
|
||||
|
||||
static int tda9950_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
static int tda9950_probe(struct i2c_client *client)
|
||||
{
|
||||
struct tda9950_glue *glue = client->dev.platform_data;
|
||||
struct device *dev = &client->dev;
|
||||
@ -493,7 +492,7 @@ static struct i2c_device_id tda9950_ids[] = {
|
||||
MODULE_DEVICE_TABLE(i2c, tda9950_ids);
|
||||
|
||||
static struct i2c_driver tda9950_driver = {
|
||||
.probe = tda9950_probe,
|
||||
.probe_new = tda9950_probe,
|
||||
.remove = tda9950_remove,
|
||||
.driver = {
|
||||
.name = "tda9950",
|
||||
|
Loading…
Reference in New Issue
Block a user