diff options
| author | AceLan Kao <acelan.kao@canonical.com> | 2012-07-13 04:39:57 -0400 |
|---|---|---|
| committer | Matthew Garrett <mjg@redhat.com> | 2012-07-28 00:28:55 -0400 |
| commit | 5f1e88f4974c82fc0eccf0a12f9eeb038af383fa (patch) | |
| tree | 13d787bc8afdf1a1c7b582c17226a8f6e1fe0cdf | |
| parent | 1bfaf1d5bcfb2ae0b7b90c5aed86909ee4f3f099 (diff) | |
dell-laptop: Add 6 machines to touchpad led quirk
Add the following machines into quirk,
Isnpiron 5420, Isnpiron 5520, Isnpiron 5720,
Isnpiron 7420, Isnpiron 7520, Isnpiron 7720
Signed-off-by: AceLan Kao <acelan.kao@canonical.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
| -rw-r--r-- | drivers/platform/x86/dell-laptop.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c index 5f78aac9b163..4e96e8c0b60f 100644 --- a/drivers/platform/x86/dell-laptop.c +++ b/drivers/platform/x86/dell-laptop.c | |||
| @@ -206,6 +206,60 @@ static struct dmi_system_id __devinitdata dell_quirks[] = { | |||
| 206 | }, | 206 | }, |
| 207 | .driver_data = &quirk_dell_vostro_v130, | 207 | .driver_data = &quirk_dell_vostro_v130, |
| 208 | }, | 208 | }, |
| 209 | { | ||
| 210 | .callback = dmi_matched, | ||
| 211 | .ident = "Dell Inspiron 5420", | ||
| 212 | .matches = { | ||
| 213 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 214 | DMI_MATCH(DMI_PRODUCT_NAME, "Isnpiron 5420"), | ||
| 215 | }, | ||
| 216 | .driver_data = &quirk_dell_vostro_v130, | ||
| 217 | }, | ||
| 218 | { | ||
| 219 | .callback = dmi_matched, | ||
| 220 | .ident = "Dell Inspiron 5520", | ||
| 221 | .matches = { | ||
| 222 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 223 | DMI_MATCH(DMI_PRODUCT_NAME, "Isnpiron 5520"), | ||
| 224 | }, | ||
| 225 | .driver_data = &quirk_dell_vostro_v130, | ||
| 226 | }, | ||
| 227 | { | ||
| 228 | .callback = dmi_matched, | ||
| 229 | .ident = "Dell Inspiron 5720", | ||
| 230 | .matches = { | ||
| 231 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 232 | DMI_MATCH(DMI_PRODUCT_NAME, "Isnpiron 5720"), | ||
| 233 | }, | ||
| 234 | .driver_data = &quirk_dell_vostro_v130, | ||
| 235 | }, | ||
| 236 | { | ||
| 237 | .callback = dmi_matched, | ||
| 238 | .ident = "Dell Inspiron 7420", | ||
| 239 | .matches = { | ||
| 240 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 241 | DMI_MATCH(DMI_PRODUCT_NAME, "Isnpiron 7420"), | ||
| 242 | }, | ||
| 243 | .driver_data = &quirk_dell_vostro_v130, | ||
| 244 | }, | ||
| 245 | { | ||
| 246 | .callback = dmi_matched, | ||
| 247 | .ident = "Dell Inspiron 7520", | ||
| 248 | .matches = { | ||
| 249 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 250 | DMI_MATCH(DMI_PRODUCT_NAME, "Isnpiron 7520"), | ||
| 251 | }, | ||
| 252 | .driver_data = &quirk_dell_vostro_v130, | ||
| 253 | }, | ||
| 254 | { | ||
| 255 | .callback = dmi_matched, | ||
| 256 | .ident = "Dell Inspiron 7720", | ||
| 257 | .matches = { | ||
| 258 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 259 | DMI_MATCH(DMI_PRODUCT_NAME, "Isnpiron 7720"), | ||
| 260 | }, | ||
| 261 | .driver_data = &quirk_dell_vostro_v130, | ||
| 262 | }, | ||
| 209 | { } | 263 | { } |
| 210 | }; | 264 | }; |
| 211 | 265 | ||
