diff options
Diffstat (limited to 'drivers/acpi/bus.c')
-rw-r--r-- | drivers/acpi/bus.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 3263b68cdfa3..3188da3df8da 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c | |||
@@ -250,6 +250,10 @@ static int __acpi_bus_set_power(struct acpi_device *device, int state) | |||
250 | return -ENODEV; | 250 | return -ENODEV; |
251 | } | 251 | } |
252 | 252 | ||
253 | /* For D3cold we should execute _PS3, not _PS4. */ | ||
254 | if (state == ACPI_STATE_D3_COLD) | ||
255 | object_name[3] = '3'; | ||
256 | |||
253 | /* | 257 | /* |
254 | * Transition Power | 258 | * Transition Power |
255 | * ---------------- | 259 | * ---------------- |