summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0038-dell-laptop-add-3-machines-that-has-touchpad-LED.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0038-dell-laptop-add-3-machines-that-has-touchpad-LED.patch')
-rw-r--r--recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0038-dell-laptop-add-3-machines-that-has-touchpad-LED.patch58
1 files changed, 58 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0038-dell-laptop-add-3-machines-that-has-touchpad-LED.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0038-dell-laptop-add-3-machines-that-has-touchpad-LED.patch
new file mode 100644
index 00000000..4955043f
--- /dev/null
+++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0038-dell-laptop-add-3-machines-that-has-touchpad-LED.patch
@@ -0,0 +1,58 @@
1From bbfc688f2500196757c1d7334d25e335308798c5 Mon Sep 17 00:00:00 2001
2From: AceLan Kao <acelan.kao@canonical.com>
3Date: Thu, 17 Nov 2011 15:30:42 +0800
4Subject: [PATCH 038/165] dell-laptop: add 3 machines that has touchpad LED
5
6commit 2a748853ca395c48ea75baa250f7cea6f0f23dbf upstream.
7
8Add "Vostro 3555", "Inspiron N311z", and "Inspiron M5110" into quirks,
9so that they could have touchpad LED function work.
10
11Signed-off-by: AceLan Kao <acelan.kao@canonical.com>
12Signed-off-by: Matthew Garrett <mjg@redhat.com>
13Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
14---
15 drivers/platform/x86/dell-laptop.c | 27 +++++++++++++++++++++++++++
16 1 files changed, 27 insertions(+), 0 deletions(-)
17
18diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c
19index d93e962..7621ac2 100644
20--- a/drivers/platform/x86/dell-laptop.c
21+++ b/drivers/platform/x86/dell-laptop.c
22@@ -184,6 +184,33 @@ static struct dmi_system_id __devinitdata dell_quirks[] = {
23 },
24 .driver_data = &quirk_dell_vostro_v130,
25 },
26+ {
27+ .callback = dmi_matched,
28+ .ident = "Dell Vostro 3555",
29+ .matches = {
30+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
31+ DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3555"),
32+ },
33+ .driver_data = &quirk_dell_vostro_v130,
34+ },
35+ {
36+ .callback = dmi_matched,
37+ .ident = "Dell Inspiron N311z",
38+ .matches = {
39+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
40+ DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron N311z"),
41+ },
42+ .driver_data = &quirk_dell_vostro_v130,
43+ },
44+ {
45+ .callback = dmi_matched,
46+ .ident = "Dell Inspiron M5110",
47+ .matches = {
48+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
49+ DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron M5110"),
50+ },
51+ .driver_data = &quirk_dell_vostro_v130,
52+ },
53 };
54
55 static struct calling_interface_buffer *buffer;
56--
571.7.7.6
58