From: Sakari Ailus Date: Fri, 10 Jan 2025 13:54:22 +0000 (+0200) Subject: media: i2c: ccs: Set the device's runtime PM status correctly in probe X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=80704d14f1bd3628f578510e0a88b66824990ef6;p=users%2Fjedix%2Flinux-maple.git media: i2c: ccs: Set the device's runtime PM status correctly in probe Set the device's runtime PM status to suspended in probe error paths where it was previously set to active. Fixes: 9447082ae666 ("[media] smiapp: Implement power-on and power-off sequences without runtime PM") Cc: stable@vger.kernel.org # for >= v5.15 Signed-off-by: Sakari Ailus Signed-off-by: Hans Verkuil --- diff --git a/drivers/media/i2c/ccs/ccs-core.c b/drivers/media/i2c/ccs/ccs-core.c index 45b317216abac..004d28c332875 100644 --- a/drivers/media/i2c/ccs/ccs-core.c +++ b/drivers/media/i2c/ccs/ccs-core.c @@ -3566,6 +3566,7 @@ static int ccs_probe(struct i2c_client *client) out_disable_runtime_pm: pm_runtime_put_noidle(&client->dev); pm_runtime_disable(&client->dev); + pm_runtime_set_suspended(&client->dev); out_cleanup: ccs_cleanup(sensor);