mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 07:03:03 +02:00
media: atomisp: ov2680: Add dev local variable to probe()
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>
This commit is contained in:
parent
e25a2589e3
commit
66c7b303c7
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user