]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
iio: tcs3472: use local struct device * for remaining cases
authorAldo Conte <aldocontelk@gmail.com>
Fri, 22 May 2026 12:34:17 +0000 (14:34 +0200)
committerJonathan Cameron <jic23@kernel.org>
Sun, 31 May 2026 10:01:48 +0000 (11:01 +0100)
Use the local 'struct device *dev' variable introduced for the devm
calls also for the dev_info() calls in tcs3472_probe(), to keep the
probe function consistent.

No functional change.

Signed-off-by: Aldo Conte <aldocontelk@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/light/tcs3472.c

index b0e8d56615671e25e340f53b143edfcc476fec23..24b71d4543c520c69b6723a22473f8aa8d3ccdbe 100644 (file)
@@ -480,9 +480,9 @@ static int tcs3472_probe(struct i2c_client *client)
                return ret;
 
        if (ret == 0x44)
-               dev_info(&client->dev, "TCS34721/34725 found\n");
+               dev_info(dev, "TCS34721/34725 found\n");
        else if (ret == 0x4d)
-               dev_info(&client->dev, "TCS34723/34727 found\n");
+               dev_info(dev, "TCS34723/34727 found\n");
        else
                return -ENODEV;