You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
thermal: rcar: Use pm_runtime_put() i.s.o. pm_runtime_put_sync()
There's no need for this to be synchronous Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
This commit is contained in:
committed by
Zhang Rui
parent
c65d34735a
commit
09be511cda
@@ -470,7 +470,7 @@ error_unregister:
|
|||||||
rcar_thermal_irq_disable(priv);
|
rcar_thermal_irq_disable(priv);
|
||||||
}
|
}
|
||||||
|
|
||||||
pm_runtime_put_sync(dev);
|
pm_runtime_put(dev);
|
||||||
pm_runtime_disable(dev);
|
pm_runtime_disable(dev);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
@@ -488,7 +488,7 @@ static int rcar_thermal_remove(struct platform_device *pdev)
|
|||||||
rcar_thermal_irq_disable(priv);
|
rcar_thermal_irq_disable(priv);
|
||||||
}
|
}
|
||||||
|
|
||||||
pm_runtime_put_sync(dev);
|
pm_runtime_put(dev);
|
||||||
pm_runtime_disable(dev);
|
pm_runtime_disable(dev);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user