Commit c1d7a2c8 authored by Sakari Ailus's avatar Sakari Ailus Committed by Mauro Carvalho Chehab
Browse files

media: smiapp: Use pm_runtime_get_if_active



Use the convenience function pm_runtime_get_if_active() instead of a
number of calls to runtime PM to figure out if the device was already
powered up.

Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 52db11f3
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -508,9 +508,7 @@ static int smiapp_set_ctrl(struct v4l2_ctrl *ctrl)
		break;
	}

	pm_runtime_get_noresume(&client->dev);
	pm_status = pm_runtime_get_if_in_use(&client->dev);
	pm_runtime_put_noidle(&client->dev);
	pm_status = pm_runtime_get_if_active(&client->dev, true);
	if (!pm_status)
		return 0;