aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/power/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/base/power/main.c')
-rw-r--r--drivers/base/power/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c
index 8a5258339ca2..fb4ca2870081 100644
--- a/drivers/base/power/main.c
+++ b/drivers/base/power/main.c
@@ -877,6 +877,11 @@ static int __device_suspend(struct device *dev, pm_message_t state, bool async)
877 if (async_error) 877 if (async_error)
878 goto End; 878 goto End;
879 879
880 if (pm_wakeup_pending()) {
881 async_error = -EBUSY;
882 goto End;
883 }
884
880 if (dev->class) { 885 if (dev->class) {
881 if (dev->class->pm) { 886 if (dev->class->pm) {
882 pm_dev_dbg(dev, state, "class "); 887 pm_dev_dbg(dev, state, "class ");