diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2011-07-08 20:53:36 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2011-07-15 23:58:20 +0200 |
commit | f0c077a8b7f9dce590c760a7b2f3c417dffa52d1 (patch) | |
tree | ef6d08aa3ca1d79000db7d7479d98bda04a11c78 /drivers/char/apm-emulation.c | |
parent | 1d8047a6f7973470bb1de4606a6e00c0bbee3cc6 (diff) | |
download | linux-3.10-f0c077a8b7f9dce590c760a7b2f3c417dffa52d1.tar.gz linux-3.10-f0c077a8b7f9dce590c760a7b2f3c417dffa52d1.tar.bz2 linux-3.10-f0c077a8b7f9dce590c760a7b2f3c417dffa52d1.zip |
PM: Improve error code of pm_notifier_call_chain()
This enables pm_notifier_call_chain() to get the actual error code
in the callback rather than always assume -EINVAL by converting all
PM notifier calls to return encapsulate error code with
notifier_from_errno().
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'drivers/char/apm-emulation.c')
-rw-r--r-- | drivers/char/apm-emulation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/apm-emulation.c b/drivers/char/apm-emulation.c index 548708c4b2b..a7346ab97a3 100644 --- a/drivers/char/apm-emulation.c +++ b/drivers/char/apm-emulation.c @@ -606,7 +606,7 @@ static int apm_suspend_notifier(struct notifier_block *nb, return NOTIFY_OK; /* interrupted by signal */ - return NOTIFY_BAD; + return notifier_from_errno(err); case PM_POST_SUSPEND: /* |