aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2009-12-16 02:19:55 -0500
committerLen Brown <len.brown@intel.com>2009-12-16 02:19:55 -0500
commit8033c314b9b67f53eddb3afcbec74c39b57b56b6 (patch)
tree859a3f4e42eea084c584209af1a188262a140ad1 /drivers/acpi
parent8fa79e08f50f4ec1fd8903eca6fd6f36c36dd4c4 (diff)
parent13c199c0d0cf78b27592991129fb8cbcfc5164de (diff)
Merge branch 'bugzilla-14782' into release
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/button.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c
index 0c9c6a9a002..8a95e8329df 100644
--- a/drivers/acpi/button.c
+++ b/drivers/acpi/button.c
@@ -282,6 +282,13 @@ static int acpi_lid_send_state(struct acpi_device *device)
282 if (ret == NOTIFY_DONE) 282 if (ret == NOTIFY_DONE)
283 ret = blocking_notifier_call_chain(&acpi_lid_notifier, state, 283 ret = blocking_notifier_call_chain(&acpi_lid_notifier, state,
284 device); 284 device);
285 if (ret == NOTIFY_DONE || ret == NOTIFY_OK) {
286 /*
287 * It is also regarded as success if the notifier_chain
288 * returns NOTIFY_OK or NOTIFY_DONE.
289 */
290 ret = 0;
291 }
285 return ret; 292 return ret;
286} 293}
287 294