Since the interpreter slack mode is a tunable now, enable a local hack only
when it is set. Note the default behaviour does not change by this change.
This commit is contained in:
parent
2bd2be1b08
commit
f113de4c54
@ -474,13 +474,16 @@ AcpiEnterSleepState (
|
||||
return_ACPI_STATUS (Status);
|
||||
}
|
||||
|
||||
/*
|
||||
* Some BIOSs don't set WAK_STS at all. Give up waiting after
|
||||
* 1000 retries if it still isn't set.
|
||||
*/
|
||||
if (Retry-- == 0)
|
||||
if (AcpiGbl_EnableInterpreterSlack)
|
||||
{
|
||||
break;
|
||||
/*
|
||||
* Some BIOSs don't set WAK_STS at all. Give up waiting after
|
||||
* 1000 retries if it still isn't set.
|
||||
*/
|
||||
if (Retry-- == 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* Spin until we wake */
|
||||
|
Loading…
Reference in New Issue
Block a user