diff options
Diffstat (limited to 'drivers/platform/x86/thinkpad_acpi.c')
-rw-r--r-- | drivers/platform/x86/thinkpad_acpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index f959978c7aac..cf0f89364d44 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c | |||
@@ -8878,13 +8878,13 @@ static int __must_check __init get_thinkpad_model_data( | |||
8878 | } | 8878 | } |
8879 | 8879 | ||
8880 | s = dmi_get_system_info(DMI_PRODUCT_VERSION); | 8880 | s = dmi_get_system_info(DMI_PRODUCT_VERSION); |
8881 | if (s && !(strnicmp(s, "ThinkPad", 8) && strnicmp(s, "Lenovo", 6))) { | 8881 | if (s && !(strncasecmp(s, "ThinkPad", 8) && strncasecmp(s, "Lenovo", 6))) { |
8882 | tp->model_str = kstrdup(s, GFP_KERNEL); | 8882 | tp->model_str = kstrdup(s, GFP_KERNEL); |
8883 | if (!tp->model_str) | 8883 | if (!tp->model_str) |
8884 | return -ENOMEM; | 8884 | return -ENOMEM; |
8885 | } else { | 8885 | } else { |
8886 | s = dmi_get_system_info(DMI_BIOS_VENDOR); | 8886 | s = dmi_get_system_info(DMI_BIOS_VENDOR); |
8887 | if (s && !(strnicmp(s, "Lenovo", 6))) { | 8887 | if (s && !(strncasecmp(s, "Lenovo", 6))) { |
8888 | tp->model_str = kstrdup(s, GFP_KERNEL); | 8888 | tp->model_str = kstrdup(s, GFP_KERNEL); |
8889 | if (!tp->model_str) | 8889 | if (!tp->model_str) |
8890 | return -ENOMEM; | 8890 | return -ENOMEM; |