Commit 47b91923 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Lee Jones

mfd: intel-lpss: Fix build error when !CONFIG_PM_SLEEP

Jim Davis reported the compilation error with a random configuration which
apparently has CONFIG_PM=y and CONFIG_PM_SLEEP=n. With that conditions we have
missed definition of INTEL_LPSS_SLEEP_PM_OPS macro. Add it here.
Reported-by: default avatarJim Davis <jim.epost@gmail.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 1f93e4a9
...@@ -42,6 +42,8 @@ int intel_lpss_resume(struct device *dev); ...@@ -42,6 +42,8 @@ int intel_lpss_resume(struct device *dev);
.thaw = intel_lpss_resume, \ .thaw = intel_lpss_resume, \
.poweroff = intel_lpss_suspend, \ .poweroff = intel_lpss_suspend, \
.restore = intel_lpss_resume, .restore = intel_lpss_resume,
#else
#define INTEL_LPSS_SLEEP_PM_OPS
#endif #endif
#define INTEL_LPSS_RUNTIME_PM_OPS \ #define INTEL_LPSS_RUNTIME_PM_OPS \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment