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>

authored by Kamal Mostafa and committed by Len Brown ea5bc73f 07bedca2

+24
+24
drivers/acpi/sleep.c
··· 578 578 DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"), 579 579 }, 580 580 }, 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 + }, 581 605 {}, 582 606 }; 583 607 #endif /* CONFIG_SUSPEND */