projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db38a29
)
asus-acpi: remove duplicate comparison of asus_model strings
author
Roel Kluin
<roel.kluin@gmail.com>
Mon, 1 Mar 2010 18:26:22 +0000
(13:26 -0500)
committer
Matthew Garrett
<mjg@redhat.com>
Mon, 1 Mar 2010 18:26:22 +0000
(13:26 -0500)
These tests already occur elsewhere
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Cc: Corentin Chary <corentincj@iksaif.net>
Cc: Karol Kozimor <sziwan@users.sourceforge.net>
Cc: Len Brown <lenb@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/platform/x86/asus_acpi.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/platform/x86/asus_acpi.c
b/drivers/platform/x86/asus_acpi.c
index c1d2aeeea9482fd5b6730d78e35e412c27df25b1..1381430e110565f012f4c98bb7927b01874fd026 100644
(file)
--- a/
drivers/platform/x86/asus_acpi.c
+++ b/
drivers/platform/x86/asus_acpi.c
@@
-1225,9
+1225,8
@@
static int asus_model_match(char *model)
else if (strncmp(model, "M2N", 3) == 0 ||
strncmp(model, "M3N", 3) == 0 ||
strncmp(model, "M5N", 3) == 0 ||
- strncmp(model, "M6N", 3) == 0 ||
strncmp(model, "S1N", 3) == 0 ||
- strncmp(model, "S5N", 3) == 0
|| strncmp(model, "W1N", 3) == 0
)
+ strncmp(model, "S5N", 3) == 0)
return xxN;
else if (strncmp(model, "M1", 2) == 0)
return M1A;