Am 19.03.2014 20:15, schrieb Scott K Logan:
The button mappings for the Fujitsu Lifebook T901 and T902 are quite different
from the generic Lifebook T mappings that are defined. This patch adds
mappings that are specific to the hardware on these machines, and allows
users to take advantage of features like screen rotation.

Signed-off-by: Scott K Logan <[email protected]>

Patch looks good to me. Please apply.

Acked-by: Robert Gerlach <[email protected]>


---
drivers/platform/x86/fujitsu-tablet.c | 65 +++++++++++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/drivers/platform/x86/fujitsu-tablet.c
b/drivers/platform/x86/fujitsu-tablet.c
index 570926c..c3784ba 100644
--- a/drivers/platform/x86/fujitsu-tablet.c
+++ b/drivers/platform/x86/fujitsu-tablet.c
@@ -71,6 +71,44 @@ struct fujitsu_config {
        KEY_LEFTALT
 };
 +static unsigned short keymap_Lifebook_T901[KEYMAP_LEN] __initdata = {
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_SCROLLDOWN,
+       KEY_SCROLLUP,
+       KEY_CYCLEWINDOWS,
+       KEY_LEFTCTRL,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_LEFTMETA
+};
+
+static unsigned short keymap_Lifebook_T902[KEYMAP_LEN] __initdata = {
+       KEY_RESERVED,
+       KEY_VOLUMEDOWN,
+       KEY_VOLUMEUP,
+       KEY_CYCLEWINDOWS,
+       KEY_PROG1,
+       KEY_PROG2,
+       KEY_LEFTMETA,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+       KEY_RESERVED,
+};
+
 static unsigned short keymap_Lifebook_U810[KEYMAP_LEN] __initdata = {
        KEY_RESERVED,
        KEY_RESERVED,
@@ -302,6 +340,33 @@ static int fujitsu_dmi_stylistic(const struct
dmi_system_id *dmi)
 static const struct dmi_system_id dmi_ids[] __initconst = {
        {
                .callback = fujitsu_dmi_lifebook,
+               .ident = "Fujitsu Lifebook T901",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook T901")
+               },
+               .driver_data = keymap_Lifebook_T901
+       },
+       {
+               .callback = fujitsu_dmi_lifebook,
+               .ident = "Fujitsu Lifebook T901",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T901")
+               },
+               .driver_data = keymap_Lifebook_T901
+       },
+       {
+               .callback = fujitsu_dmi_lifebook,
+               .ident = "Fujitsu Lifebook T902",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T902")
+               },
+               .driver_data = keymap_Lifebook_T902
+       },
+       {
+               .callback = fujitsu_dmi_lifebook,
                .ident = "Fujitsu Siemens P/T Series",
                .matches = {
                        DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
--
To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" 
in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to