Commit 4a198be7f072190a44033b7de6084b090b9885ee

Authored by Albert Astals Cid
Committed by Matthew Garrett
1 parent 59ccf2f3d5

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>

Showing 1 changed file with 8 additions and 0 deletions Side-by-side Diff

drivers/platform/x86/compal-laptop.c
... ... @@ -872,6 +872,14 @@
872 872 },
873 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