diff options
author | Rafael J. Wysocki <rjw@sisk.pl> | 2011-01-06 17:37:01 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-01-07 01:18:30 -0500 |
commit | 7b330707dddab1ad772898c1c82516342a551173 (patch) | |
tree | ba8dee8c03fb1d8c157dba5a87778b9acead1982 /drivers/acpi | |
parent | 1f83511bd8f44b8a9e2d82263b2c95f26a625fcc (diff) |
ACPI / PM: Blacklist Averatec machine known to require acpi_sleep=nonvs
Apparently, Averatec AV1020-ED2 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: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-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 febb153b5a68..ddc5cce508a1 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c | |||
@@ -435,6 +435,14 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = { | |||
435 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-NW130D"), | 435 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-NW130D"), |
436 | }, | 436 | }, |
437 | }, | 437 | }, |
438 | { | ||
439 | .callback = init_nvs_nosave, | ||
440 | .ident = "Averatec AV1020-ED2", | ||
441 | .matches = { | ||
442 | DMI_MATCH(DMI_SYS_VENDOR, "AVERATEC"), | ||
443 | DMI_MATCH(DMI_PRODUCT_NAME, "1000 Series"), | ||
444 | }, | ||
445 | }, | ||
438 | {}, | 446 | {}, |
439 | }; | 447 | }; |
440 | #endif /* CONFIG_SUSPEND */ | 448 | #endif /* CONFIG_SUSPEND */ |