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

Commit 78a7539b authored by Thomas Courbon's avatar Thomas Courbon Committed by Matthew Garrett
Browse files

Platform: fix samsung-laptop DMI identification for N150/N210/220/N230



Some samsung latop of the N150/N2{10,20,30} serie are badly detected by the samsung-laptop platform driver, see bug # 36082.
It appears that N230 identifies itself as N150/N210/N220/N230 whereas the other identify themselves as N150/N210/220.
This patch attemtp fix #36082 allowing correct identification for all the said netbook model.

Reported-by: default avatarDaniel Eklöf <daniel@ekloef.se>
Signed-off-by: default avatarThomas Courbon <thcourbon@gmail.com>
Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
parent f1566f0d
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -610,6 +610,16 @@ static struct dmi_system_id __initdata samsung_dmi_table[] = {
		},
		.callback = dmi_check_cb,
	},
	{
		.ident = "N150/N210/N220",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR,
					"SAMSUNG ELECTRONICS CO., LTD."),
			DMI_MATCH(DMI_PRODUCT_NAME, "N150/N210/N220"),
			DMI_MATCH(DMI_BOARD_NAME, "N150/N210/N220"),
		},
		.callback = dmi_check_cb,
	},
	{
		.ident = "N150/N210/N220/N230",
		.matches = {