pm_runtime_put_autosuspend() will soon be changed to include a call to pm_runtime_mark_last_busy(). This patch switches the current users to __pm_runtime_put_autosuspend() which will continue to have the functionality of old pm_runtime_put_autosuspend().
Signed-off-by: Sakari Ailus sakari.ailus@linux.intel.com --- include/linux/greybus/bundle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/greybus/bundle.h b/include/linux/greybus/bundle.h index df8d88424cb7..c23709c3426f 100644 --- a/include/linux/greybus/bundle.h +++ b/include/linux/greybus/bundle.h @@ -64,7 +64,7 @@ static inline int gb_pm_runtime_put_autosuspend(struct gb_bundle *bundle) int retval;
pm_runtime_mark_last_busy(&bundle->dev); - retval = pm_runtime_put_autosuspend(&bundle->dev); + retval = __pm_runtime_put_autosuspend(&bundle->dev);
return retval; }