diff options
| author | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 14:36:25 +0100 | 
|---|---|---|
| committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 14:36:25 +0100 | 
| commit | a8931ef380c92d121ae74ecfb03b2d63f72eea6f (patch) | |
| tree | 980fb6b019e11e6cb1ece55b7faff184721a8053 /drivers/acpi/hardware/hwsleep.c | |
| parent | 90574d0a4d4b73308ae54a2a57a4f3f1fa98e984 (diff) | |
| parent | e5a5816f7875207cb0a0a7032e39a4686c5e10a4 (diff) | |
| download | olio-linux-3.10-a8931ef380c92d121ae74ecfb03b2d63f72eea6f.tar.xz olio-linux-3.10-a8931ef380c92d121ae74ecfb03b2d63f72eea6f.zip  | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'drivers/acpi/hardware/hwsleep.c')
| -rw-r--r-- | drivers/acpi/hardware/hwsleep.c | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/acpi/hardware/hwsleep.c b/drivers/acpi/hardware/hwsleep.c index d9937e05ec6..dba3cfbe8cb 100644 --- a/drivers/acpi/hardware/hwsleep.c +++ b/drivers/acpi/hardware/hwsleep.c @@ -223,15 +223,17 @@ acpi_status acpi_enter_sleep_state_prep(u8 sleep_state)  		break;  	} -	/* Set the system indicators to show the desired sleep state. */ - +	/* +	 * Set the system indicators to show the desired sleep state. +	 * _SST is an optional method (return no error if not found) +	 */  	status = acpi_evaluate_object(NULL, METHOD_NAME__SST, &arg_list, NULL);  	if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {  		ACPI_EXCEPTION((AE_INFO, status,  				"While executing method _SST"));  	} -	return_ACPI_STATUS(status); +	return_ACPI_STATUS(AE_OK);  }  ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_prep)  |