diff options
author | Niels de Vos <niels.devos@wincor-nixdorf.com> | 2008-09-04 22:20:11 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-09-10 12:12:31 -0400 |
commit | d19497e2922cfe04bf0aa986bda6cf46c2b4705f (patch) | |
tree | a0c52264b029fc23c985f9497847cdad1c8a27eb | |
parent | 67d47641b5d271c58a0283d2e8ce77eb9e7c2865 (diff) |
Input: serio_raw - allow attaching to translated (SERIO_I8042XL) ports
serio_raw only binds to non-translated devices. Enable serio_raw to
bind to normal (translated) keyboards which can have non-standard
extensions (like POS Keyboards). With this it is possible to send
commands to the device over /dev/serio_raw<n>.
Signed-off-by: Niels de Vos <niels.devos@wincor-nixdorf.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
-rw-r--r-- | drivers/input/serio/serio_raw.c | 6 |
1 files changed, 6 insertions, 0 deletions
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 | ||