diff options
author | Mario Limonciello <Mario_Limonciello@Dell.com> | 2009-08-24 17:00:47 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2010-02-25 11:50:39 -0500 |
commit | 34325b9d2a7d36e2ba74a6652f2e3e8d57dfb145 (patch) | |
tree | 273680b6d16e276f6efa9ed92a615c65549164c5 /drivers/platform | |
parent | d094485323a1f2abc7e4665700d6036de36fdaef (diff) |
compal-laptop: Add support for known Compal made Dell laptops
The following Dell laptops are known to have been manufacturer by Compal
and are supported by the compal-laptop platform driver
- Mini 9
- Mini 10
- Mini 12
- Mini 10v
- Inspiron 11z
Signed-off-by: Mario Limonciello <Mario_Limonciello@Dell.com>
Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Cc: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/compal-laptop.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/drivers/platform/x86/compal-laptop.c b/drivers/platform/x86/compal-laptop.c index 1a387e79f719..c78d254303bc 100644 --- a/drivers/platform/x86/compal-laptop.c +++ b/drivers/platform/x86/compal-laptop.c | |||
@@ -310,6 +310,47 @@ static struct dmi_system_id __initdata compal_dmi_table[] = { | |||
310 | }, | 310 | }, |
311 | .callback = dmi_check_cb | 311 | .callback = dmi_check_cb |
312 | }, | 312 | }, |
313 | { | ||
314 | .ident = "Dell Mini 9", | ||
315 | .matches = { | ||
316 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
317 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 910"), | ||
318 | }, | ||
319 | .callback = dmi_check_cb | ||
320 | }, | ||
321 | { | ||
322 | .ident = "Dell Mini 10", | ||
323 | .matches = { | ||
324 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
325 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1010"), | ||
326 | }, | ||
327 | .callback = dmi_check_cb | ||
328 | }, | ||
329 | { | ||
330 | .ident = "Dell Mini 10v", | ||
331 | .matches = { | ||
332 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
333 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1011"), | ||
334 | }, | ||
335 | .callback = dmi_check_cb | ||
336 | }, | ||
337 | { | ||
338 | .ident = "Dell Inspiron 11z", | ||
339 | .matches = { | ||
340 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
341 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1110"), | ||
342 | }, | ||
343 | .callback = dmi_check_cb | ||
344 | }, | ||
345 | { | ||
346 | .ident = "Dell Mini 12", | ||
347 | .matches = { | ||
348 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
349 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1210"), | ||
350 | }, | ||
351 | .callback = dmi_check_cb | ||
352 | }, | ||
353 | |||
313 | { } | 354 | { } |
314 | }; | 355 | }; |
315 | 356 | ||
@@ -403,3 +444,8 @@ MODULE_ALIAS("dmi:*:rnIFL90:rvrREFERENCE:*"); | |||
403 | MODULE_ALIAS("dmi:*:rnIFL91:rvrIFT00:*"); | 444 | MODULE_ALIAS("dmi:*:rnIFL91:rvrIFT00:*"); |
404 | MODULE_ALIAS("dmi:*:rnJFL92:rvrIFT00:*"); | 445 | MODULE_ALIAS("dmi:*:rnJFL92:rvrIFT00:*"); |
405 | MODULE_ALIAS("dmi:*:rnIFT00:rvrIFT00:*"); | 446 | MODULE_ALIAS("dmi:*:rnIFT00:rvrIFT00:*"); |
447 | MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron910:*"); | ||
448 | MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1010:*"); | ||
449 | MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1011:*"); | ||
450 | MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1110:*"); | ||
451 | MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1210:*"); | ||