Skip to content

Commit ea5bc73

Browse files
kamalmostafalenb
authored andcommitted
ACPI: sleep: init_set_sci_en_on_resume for Dell Studio 155x
Add Dell Studio models (1558, 1557, 1555) to the 'set_sci_en_on_resume' list to fix hang on resume. BugLink: http://bugs.launchpad.net/bugs/553498 Signed-off-by: Kamal Mostafa <kamal@canonical.com> Acked-by: Alex Chiang <achiang@canonical.com> Cc: stable@kernel.org Signed-off-by: Len Brown <len.brown@intel.com>
1 parent 07bedca commit ea5bc73

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

drivers/acpi/sleep.c

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -578,6 +578,30 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = {
578578
DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"),
579579
},
580580
},
581+
{
582+
.callback = init_set_sci_en_on_resume,
583+
.ident = "Dell Studio 1558",
584+
.matches = {
585+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
586+
DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1558"),
587+
},
588+
},
589+
{
590+
.callback = init_set_sci_en_on_resume,
591+
.ident = "Dell Studio 1557",
592+
.matches = {
593+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
594+
DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1557"),
595+
},
596+
},
597+
{
598+
.callback = init_set_sci_en_on_resume,
599+
.ident = "Dell Studio 1555",
600+
.matches = {
601+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
602+
DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1555"),
603+
},
604+
},
581605
{},
582606
};
583607
#endif /* CONFIG_SUSPEND */

0 commit comments

Comments
 (0)