media: atomisp: ov2680: Add dev local variable to probe()
authorHans de Goede <hdegoede@redhat.com>
Sun, 29 Jan 2023 19:30:40 +0000 (20:30 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Wed, 8 Feb 2023 07:24:34 +0000 (08:24 +0100)
Add a dev local variable to probe(), to allow shortening
&client->dev in various places, including further patches
in this series.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/staging/media/atomisp/i2c/atomisp-ov2680.c

index 90c9d7a..6d2b0be 100644 (file)
@@ -781,6 +781,7 @@ static void ov2680_remove(struct i2c_client *client)
 
 static int ov2680_probe(struct i2c_client *client)
 {
+       struct device *dev = &client->dev;
        struct ov2680_device *sensor;
        int ret;
        void *pdata;
@@ -802,10 +803,10 @@ static int ov2680_probe(struct i2c_client *client)
                goto out_free;
        }
 
-       pm_runtime_set_suspended(&client->dev);
-       pm_runtime_enable(&client->dev);
-       pm_runtime_set_autosuspend_delay(&client->dev, 1000);
-       pm_runtime_use_autosuspend(&client->dev);
+       pm_runtime_set_suspended(dev);
+       pm_runtime_enable(dev);
+       pm_runtime_set_autosuspend_delay(dev, 1000);
+       pm_runtime_use_autosuspend(dev);
 
        ret = ov2680_s_config(&sensor->sd, client->irq, pdata);
        if (ret)