Commit 6005a8e9 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

media: i2c: ccs-core: return the right error code at suspend



If pm_runtime resume logic fails, return the error code
provided by it, instead of -EAGAIN, as, depending on what
caused it to fail, it may not be something that would be
recovered.

Fixes: cbba45d4 ("[media] smiapp: Use runtime PM")
Reviewed-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Acked-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 747bad54
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3093,7 +3093,7 @@ static int __maybe_unused ccs_suspend(struct device *dev)
	if (rval < 0) {
		pm_runtime_put_noidle(dev);

		return -EAGAIN;
		return rval;
	}

	if (sensor->streaming)