]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
PM / wakeup: Set power.can_wakeup if wakeup_sysfs_add() fails
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 1 Aug 2017 23:32:44 +0000 (01:32 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 8 Aug 2017 15:11:48 +0000 (17:11 +0200)
Currently, an error from wakeup_sysfs_add() in
device_set_wakeup_capable() causes the device's power.can_wakeup
flag to remain unset even though the device technically is capable
of signaling wakeup.

If wakeup_sysfs_add() fails user space may not be able to enable
the device to wake up the system from sleep states, but at least
for some devices that does not matter.

For this reason, set or clear power.can_wakeup upfront and if
wakeup_sysfs_add() returns an error, print a message to the log.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/base/power/wakeup.c

index 144e6d8fafc838d763a78b3d305dc5678bcb5db8..b49efe33099e1065682a3e0a4bf97d4c2e000437 100644 (file)
@@ -412,15 +412,17 @@ void device_set_wakeup_capable(struct device *dev, bool capable)
        if (!!dev->power.can_wakeup == !!capable)
                return;
 
+       dev->power.can_wakeup = capable;
        if (device_is_registered(dev) && !list_empty(&dev->power.entry)) {
                if (capable) {
-                       if (wakeup_sysfs_add(dev))
-                               return;
+                       int ret = wakeup_sysfs_add(dev);
+
+                       if (ret)
+                               dev_info(dev, "Wakeup sysfs attributes not added\n");
                } else {
                        wakeup_sysfs_remove(dev);
                }
        }
-       dev->power.can_wakeup = capable;
 }
 EXPORT_SYMBOL_GPL(device_set_wakeup_capable);