diff options
author | Albert Astals Cid <aacid@kde.org> | 2011-01-07 17:29:44 -0500 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-01-07 17:29:44 -0500 |
commit | 4a198be7f072190a44033b7de6084b090b9885ee (patch) | |
tree | 25d2c2f936a18225b4bed703f72d91ee72763317 /drivers/platform | |
parent | 59ccf2f3d55c06fd34613f1f78de0279436a7b35 (diff) |
Support KHLB2 in the compal laptop driver
Add the KHLB2 model identifier to the list of supported models
Signed-off-by: Albert Astals Cid <aacid@kde.org>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/compal-laptop.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/platform/x86/compal-laptop.c b/drivers/platform/x86/compal-laptop.c index 097083cac413..034572b980c9 100644 --- a/drivers/platform/x86/compal-laptop.c +++ b/drivers/platform/x86/compal-laptop.c | |||
@@ -872,6 +872,14 @@ static struct dmi_system_id __initdata compal_dmi_table[] = { | |||
872 | }, | 872 | }, |
873 | .callback = dmi_check_cb_extra | 873 | .callback = dmi_check_cb_extra |
874 | }, | 874 | }, |
875 | { | ||
876 | .ident = "KHLB2", | ||
877 | .matches = { | ||
878 | DMI_MATCH(DMI_BOARD_NAME, "KHLB2"), | ||
879 | DMI_MATCH(DMI_BOARD_VERSION, "REFERENCE"), | ||
880 | }, | ||
881 | .callback = dmi_check_cb_extra | ||
882 | }, | ||
875 | { } | 883 | { } |
876 | }; | 884 | }; |
877 | 885 | ||