Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea5bc73f authored by Kamal Mostafa's avatar Kamal Mostafa Committed by Len Brown
Browse files

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: default avatarKamal Mostafa <kamal@canonical.com>
Acked-by: default avatarAlex Chiang <achiang@canonical.com>
Cc: stable@kernel.org
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 07bedca2
Loading
Loading
Loading
Loading
+24 −0
Original line number Original line Diff line number Diff line
@@ -578,6 +578,30 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = {
		DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"),
		DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"),
		},
		},
	},
	},
	{
	.callback = init_set_sci_en_on_resume,
	.ident = "Dell Studio 1558",
	.matches = {
		DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
		DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1558"),
		},
	},
	{
	.callback = init_set_sci_en_on_resume,
	.ident = "Dell Studio 1557",
	.matches = {
		DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
		DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1557"),
		},
	},
	{
	.callback = init_set_sci_en_on_resume,
	.ident = "Dell Studio 1555",
	.matches = {
		DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
		DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1555"),
		},
	},
	{},
	{},
};
};
#endif /* CONFIG_SUSPEND */
#endif /* CONFIG_SUSPEND */