diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 14:52:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 14:52:08 -0400 |
commit | 36ac1d2f323f8bf8bc10c25b88f617657720e241 (patch) | |
tree | d51f87bdf16eaa19ce0c5a682c10dccfaef4b48d /drivers/input/serio | |
parent | d7a6119f457f48a94985fdbdc400cbb03e136a76 (diff) | |
parent | 4c0e799a9a6dc64426ddb6c03aea1a154357658f (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (32 commits)
Input: wm97xx - update email address for Liam Girdwood
Input: i8042 - add Thinkpad R31 to nomux list
Input: move map_to_7segment.h to include/linux
Input: ads7846 - fix cache line sharing issue
Input: cm109 - add missing newlines to messages
Input: document i8042.debug in kernel-parameters.txt
Input: keyboard - fix potential out of bound access to key_map
Input: psmouse - add OLPC touchpad driver
Input: psmouse - tweak PSMOUSE_DEFINE_ATTR to support raw set callbacks
Input: psmouse - add psmouse_queue_work() for ps/2 extension to make use of
Input: psmouse - export psmouse_set_state for ps/2 extensions to use
Input: ads7846 - introduce .gpio_pendown to get pendown state
Input: ALPS - add signature for DualPoint found in Dell Latitude E6500
Input: serio_raw - allow attaching to translated (SERIO_I8042XL) ports
Input: cm109 - don't use obsolete logging macros
Input: atkbd - expand Latitude's force release quirk to other Dells
Input: bf54x-keys - add power management support
Input: atmel_tsadcc - improve accuracy
Input: convert drivers to use strict_strtoul()
Input: appletouch - handle geyser 3/4 status bits
...
Diffstat (limited to 'drivers/input/serio')
-rw-r--r-- | drivers/input/serio/i8042-x86ia64io.h | 7 | ||||
-rw-r--r-- | drivers/input/serio/serio_raw.c | 6 |
2 files changed, 13 insertions, 0 deletions
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index 5aafe24984c5..a321aea2c7b5 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h | |||
@@ -322,6 +322,13 @@ static struct dmi_system_id __initdata i8042_dmi_nomux_table[] = { | |||
322 | DMI_MATCH(DMI_PRODUCT_NAME, "N34AS6"), | 322 | DMI_MATCH(DMI_PRODUCT_NAME, "N34AS6"), |
323 | }, | 323 | }, |
324 | }, | 324 | }, |
325 | { | ||
326 | .ident = "IBM 2656", | ||
327 | .matches = { | ||
328 | DMI_MATCH(DMI_SYS_VENDOR, "IBM"), | ||
329 | DMI_MATCH(DMI_PRODUCT_NAME, "2656"), | ||
330 | }, | ||
331 | }, | ||
325 | { } | 332 | { } |
326 | }; | 333 | }; |
327 | 334 | ||
diff --git a/drivers/input/serio/serio_raw.c b/drivers/input/serio/serio_raw.c index c9397c8ee97e..470770c09260 100644 --- a/drivers/input/serio/serio_raw.c +++ b/drivers/input/serio/serio_raw.c | |||
@@ -373,6 +373,12 @@ static struct serio_device_id serio_raw_serio_ids[] = { | |||
373 | .id = SERIO_ANY, | 373 | .id = SERIO_ANY, |
374 | .extra = SERIO_ANY, | 374 | .extra = SERIO_ANY, |
375 | }, | 375 | }, |
376 | { | ||
377 | .type = SERIO_8042_XL, | ||
378 | .proto = SERIO_ANY, | ||
379 | .id = SERIO_ANY, | ||
380 | .extra = SERIO_ANY, | ||
381 | }, | ||
376 | { 0 } | 382 | { 0 } |
377 | }; | 383 | }; |
378 | 384 | ||