]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
iio: light: stk3310: Convert to i2c's .probe_new()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:37:54 +0000 (23:37 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 23 Nov 2022 20:20:29 +0000 (20:20 +0000)
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: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20221118224540.619276-141-uwe@kleine-koenig.org
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/light/stk3310.c

index 7b8e0da6aabc143296fba096f64bb15321311388..48ae6ff0015e1eb91b9ad26638a41f5667537105 100644 (file)
@@ -586,8 +586,7 @@ out:
        return IRQ_HANDLED;
 }
 
-static int stk3310_probe(struct i2c_client *client,
-                        const struct i2c_device_id *id)
+static int stk3310_probe(struct i2c_client *client)
 {
        int ret;
        struct iio_dev *indio_dev;
@@ -715,7 +714,7 @@ static struct i2c_driver stk3310_driver = {
                .pm = pm_sleep_ptr(&stk3310_pm_ops),
                .acpi_match_table = ACPI_PTR(stk3310_acpi_id),
        },
-       .probe =            stk3310_probe,
+       .probe_new =        stk3310_probe,
        .remove =           stk3310_remove,
        .id_table =         stk3310_i2c_id,
 };