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

Commit 23b05316 authored by Manoj Iyer's avatar Manoj Iyer Committed by Matthew Garrett
Browse files

thinkpad-acpi: recognize Lenovo as version string in newer V-series BIOS



The newer V series bios reports product version as 'Lenovo'
instead of 'ThinkPad'. Recoginze this new string so that
the module can load.

Signed-off-by: default avatarManoj Iyer <manoj.iyer@canonical.com>
Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
Tested-by: default avatarJames Ferguson <james.ferguson@canonical.com>
Tested-by: default avatarDennis Chua <dennis.chua@canonical.com>
Tested-by: default avatarIke Pan <ike.pan@canonical.com>
Acked-by: default avatarHenrique de Moraes Holschuh <hmh@hmh.eng.br>
parent ade28abd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8658,7 +8658,7 @@ static int __must_check __init get_thinkpad_model_data(
	}

	s = dmi_get_system_info(DMI_PRODUCT_VERSION);
	if (s && !strnicmp(s, "ThinkPad", 8)) {
	if (s && !(strnicmp(s, "ThinkPad", 8) && strnicmp(s, "Lenovo", 6))) {
		tp->model_str = kstrdup(s, GFP_KERNEL);
		if (!tp->model_str)
			return -ENOMEM;