diff options
author | Manoj Iyer <[email protected]> | 2012-03-09 17:32:24 -0600 |
---|---|---|
committer | Matthew Garrett <[email protected]> | 2012-03-26 15:05:52 -0400 |
commit | 23b0531641c72c6a2f410af1c593293fa353884b (patch) | |
tree | a0c342b042b98c8b0c0dc6af5135d2f1ed999316 | |
parent | ade28abdcb474531bb7045c032a286812c7f6d2a (diff) |
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: Manoj Iyer <[email protected]>
Signed-off-by: Matthew Garrett <[email protected]>
Tested-by: James Ferguson <[email protected]>
Tested-by: Dennis Chua <[email protected]>
Tested-by: Ike Pan <[email protected]>
Acked-by: Henrique de Moraes Holschuh <[email protected]>
-rw-r--r-- | drivers/platform/x86/thinkpad_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index ea0c6075b720..d68c0002f4a2 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -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; |