diff options
author | Bogdan Radulescu <bogdan@nimblex.net> | 2011-10-06 14:35:12 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2011-10-16 17:30:36 -0400 |
commit | 731b25a4ad3c27b44f3447382da18b59167eb7a1 (patch) | |
tree | a34fc45d723e6bc0618b5b0257073ee793de22ef /drivers/acpi/sleep.c | |
parent | 89e8ea1278fb3b237159a1ca193002ef5c8652d8 (diff) |
PM / ACPI: Blacklist Vaio VGN-FW520F machine known to require acpi_sleep=nonvs
Sony Vaio VGN-FW520F does not resume correctly without
acpi_sleep=nonvs, so add it to the ACPI sleep blacklist.
References: https://bugzilla.kernel.org/show_bug.cgi?id=16396#c86
Signed-off-by: Bogdan Radulescu <bogdan@nimblex.net>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'drivers/acpi/sleep.c')
-rw-r--r-- | drivers/acpi/sleep.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index 8c3e514a343f..28a3e96a902d 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c | |||
@@ -452,6 +452,14 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = { | |||
452 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR26GN_P"), | 452 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR26GN_P"), |
453 | }, | 453 | }, |
454 | }, | 454 | }, |
455 | { | ||
456 | .callback = init_nvs_nosave, | ||
457 | .ident = "Sony Vaio VGN-FW520F", | ||
458 | .matches = { | ||
459 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), | ||
460 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW520F"), | ||
461 | }, | ||
462 | }, | ||
455 | {}, | 463 | {}, |
456 | }; | 464 | }; |
457 | #endif /* CONFIG_SUSPEND */ | 465 | #endif /* CONFIG_SUSPEND */ |