OSDN Git Service

media: m5mols: Convert to i2c's .probe_new()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:41:21 +0000 (23:41 +0100)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Mon, 21 Nov 2022 10:04:30 +0000 (11:04 +0100)
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>
drivers/media/i2c/m5mols/m5mols_core.c

index 2201d2a..2b01873 100644 (file)
@@ -939,8 +939,7 @@ static irqreturn_t m5mols_irq_handler(int irq, void *data)
        return IRQ_HANDLED;
 }
 
-static int m5mols_probe(struct i2c_client *client,
-                       const struct i2c_device_id *id)
+static int m5mols_probe(struct i2c_client *client)
 {
        const struct m5mols_platform_data *pdata = client->dev.platform_data;
        struct m5mols_info *info;
@@ -1039,7 +1038,7 @@ static struct i2c_driver m5mols_i2c_driver = {
        .driver = {
                .name   = MODULE_NAME,
        },
-       .probe          = m5mols_probe,
+       .probe_new      = m5mols_probe,
        .remove         = m5mols_remove,
        .id_table       = m5mols_id,
 };