Message ID | 1352338425-4830-1-git-send-email-tianyu.lan@intel.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
On Thursday, November 08, 2012 09:33:45 AM Lan Tianyu wrote: > Sony Vaio VPCEB1S1E does not resume correctly without > acpi_sleep=nonvs, so add it to the ACPI sleep blacklist. > > https://bugzilla.kernel.org/show_bug.cgi?id=48781 Applied to the linux-next branch of the linux-pm.git tree as v3.8 material. Thanks, Rafael > Reported-by: Sébastien Wilmet <swilmet@gnome.org> > Cc: <stable@vger.kernel.org> > Signed-off-by: Lan Tianyu <tianyu.lan@intel.com> > --- > drivers/acpi/sleep.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c > index fdcdbb6..847ed55 100644 > --- a/drivers/acpi/sleep.c > +++ b/drivers/acpi/sleep.c > @@ -519,6 +519,14 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = { > }, > { > .callback = init_nvs_nosave, > + .ident = "Sony Vaio VPCEB1S1E", > + .matches = { > + DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), > + DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB1S1E"), > + }, > + }, > + { > + .callback = init_nvs_nosave, > .ident = "Sony Vaio VGN-FW520F", > .matches = { > DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), >
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index fdcdbb6..847ed55 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c @@ -519,6 +519,14 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = { }, { .callback = init_nvs_nosave, + .ident = "Sony Vaio VPCEB1S1E", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), + DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB1S1E"), + }, + }, + { + .callback = init_nvs_nosave, .ident = "Sony Vaio VGN-FW520F", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
Sony Vaio VPCEB1S1E does not resume correctly without acpi_sleep=nonvs, so add it to the ACPI sleep blacklist. https://bugzilla.kernel.org/show_bug.cgi?id=48781 Reported-by: Sébastien Wilmet <swilmet@gnome.org> Cc: <stable@vger.kernel.org> Signed-off-by: Lan Tianyu <tianyu.lan@intel.com> --- drivers/acpi/sleep.c | 8 ++++++++ 1 file changed, 8 insertions(+)