2 * Event char devices, giving access to raw input device events.
4 * Copyright (c) 1999-2002 Vojtech Pavlik
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
11 #define EVDEV_MINOR_BASE 64
12 #define EVDEV_MINORS 32
13 #define EVDEV_BUFFER_SIZE 64
15 #include <linux/poll.h>
16 #include <linux/slab.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/input.h>
20 #include <linux/major.h>
21 #include <linux/device.h>
22 #include <linux/compat.h>
29 struct input_handle handle
;
30 wait_queue_head_t wait
;
31 struct evdev_client
*grab
;
32 struct list_head client_list
;
33 spinlock_t client_lock
; /* protects client_list */
39 struct input_event buffer
[EVDEV_BUFFER_SIZE
];
42 spinlock_t buffer_lock
; /* protects access to buffer, head and tail */
43 struct fasync_struct
*fasync
;
45 struct list_head node
;
48 static struct evdev
*evdev_table
[EVDEV_MINORS
];
49 static DEFINE_MUTEX(evdev_table_mutex
);
51 static void evdev_pass_event(struct evdev_client
*client
,
52 struct input_event
*event
)
55 * Interrupts are disabled, just acquire the lock
57 spin_lock(&client
->buffer_lock
);
58 client
->buffer
[client
->head
++] = *event
;
59 client
->head
&= EVDEV_BUFFER_SIZE
- 1;
60 spin_unlock(&client
->buffer_lock
);
62 kill_fasync(&client
->fasync
, SIGIO
, POLL_IN
);
66 * Pass incoming event to all connected clients.
68 static void evdev_event(struct input_handle
*handle
,
69 unsigned int type
, unsigned int code
, int value
)
71 struct evdev
*evdev
= handle
->private;
72 struct evdev_client
*client
;
73 struct input_event event
;
75 do_gettimeofday(&event
.time
);
82 client
= rcu_dereference(evdev
->grab
);
84 evdev_pass_event(client
, &event
);
86 list_for_each_entry_rcu(client
, &evdev
->client_list
, node
)
87 evdev_pass_event(client
, &event
);
91 wake_up_interruptible(&evdev
->wait
);
94 static int evdev_fasync(int fd
, struct file
*file
, int on
)
96 struct evdev_client
*client
= file
->private_data
;
99 retval
= fasync_helper(fd
, file
, on
, &client
->fasync
);
101 return retval
< 0 ? retval
: 0;
104 static int evdev_flush(struct file
*file
, fl_owner_t id
)
106 struct evdev_client
*client
= file
->private_data
;
107 struct evdev
*evdev
= client
->evdev
;
110 retval
= mutex_lock_interruptible(&evdev
->mutex
);
117 retval
= input_flush_device(&evdev
->handle
, file
);
119 mutex_unlock(&evdev
->mutex
);
123 static void evdev_free(struct device
*dev
)
125 struct evdev
*evdev
= container_of(dev
, struct evdev
, dev
);
127 input_put_device(evdev
->handle
.dev
);
132 * Grabs an event device (along with underlying input device).
133 * This function is called with evdev->mutex taken.
135 static int evdev_grab(struct evdev
*evdev
, struct evdev_client
*client
)
142 error
= input_grab_device(&evdev
->handle
);
146 rcu_assign_pointer(evdev
->grab
, client
);
152 static int evdev_ungrab(struct evdev
*evdev
, struct evdev_client
*client
)
154 if (evdev
->grab
!= client
)
157 rcu_assign_pointer(evdev
->grab
, NULL
);
159 input_release_device(&evdev
->handle
);
164 static void evdev_attach_client(struct evdev
*evdev
,
165 struct evdev_client
*client
)
167 spin_lock(&evdev
->client_lock
);
168 list_add_tail_rcu(&client
->node
, &evdev
->client_list
);
169 spin_unlock(&evdev
->client_lock
);
173 static void evdev_detach_client(struct evdev
*evdev
,
174 struct evdev_client
*client
)
176 spin_lock(&evdev
->client_lock
);
177 list_del_rcu(&client
->node
);
178 spin_unlock(&evdev
->client_lock
);
182 static int evdev_open_device(struct evdev
*evdev
)
186 retval
= mutex_lock_interruptible(&evdev
->mutex
);
192 else if (!evdev
->open
++) {
193 retval
= input_open_device(&evdev
->handle
);
198 mutex_unlock(&evdev
->mutex
);
202 static void evdev_close_device(struct evdev
*evdev
)
204 mutex_lock(&evdev
->mutex
);
206 if (evdev
->exist
&& !--evdev
->open
)
207 input_close_device(&evdev
->handle
);
209 mutex_unlock(&evdev
->mutex
);
213 * Wake up users waiting for IO so they can disconnect from
216 static void evdev_hangup(struct evdev
*evdev
)
218 struct evdev_client
*client
;
220 spin_lock(&evdev
->client_lock
);
221 list_for_each_entry(client
, &evdev
->client_list
, node
)
222 kill_fasync(&client
->fasync
, SIGIO
, POLL_HUP
);
223 spin_unlock(&evdev
->client_lock
);
225 wake_up_interruptible(&evdev
->wait
);
228 static int evdev_release(struct inode
*inode
, struct file
*file
)
230 struct evdev_client
*client
= file
->private_data
;
231 struct evdev
*evdev
= client
->evdev
;
233 mutex_lock(&evdev
->mutex
);
234 if (evdev
->grab
== client
)
235 evdev_ungrab(evdev
, client
);
236 mutex_unlock(&evdev
->mutex
);
238 evdev_fasync(-1, file
, 0);
239 evdev_detach_client(evdev
, client
);
242 evdev_close_device(evdev
);
243 put_device(&evdev
->dev
);
248 static int evdev_open(struct inode
*inode
, struct file
*file
)
251 struct evdev_client
*client
;
252 int i
= iminor(inode
) - EVDEV_MINOR_BASE
;
255 if (i
>= EVDEV_MINORS
)
258 error
= mutex_lock_interruptible(&evdev_table_mutex
);
261 evdev
= evdev_table
[i
];
263 get_device(&evdev
->dev
);
264 mutex_unlock(&evdev_table_mutex
);
269 client
= kzalloc(sizeof(struct evdev_client
), GFP_KERNEL
);
275 spin_lock_init(&client
->buffer_lock
);
276 client
->evdev
= evdev
;
277 evdev_attach_client(evdev
, client
);
279 error
= evdev_open_device(evdev
);
281 goto err_free_client
;
283 file
->private_data
= client
;
287 evdev_detach_client(evdev
, client
);
290 put_device(&evdev
->dev
);
296 struct input_event_compat
{
297 struct compat_timeval time
;
303 /* Note to the author of this code: did it ever occur to
304 you why the ifdefs are needed? Think about it again. -AK */
306 # define COMPAT_TEST is_compat_task()
307 #elif defined(CONFIG_IA64)
308 # define COMPAT_TEST IS_IA32_PROCESS(task_pt_regs(current))
309 #elif defined(CONFIG_S390)
310 # define COMPAT_TEST test_thread_flag(TIF_31BIT)
311 #elif defined(CONFIG_MIPS)
312 # define COMPAT_TEST test_thread_flag(TIF_32BIT_ADDR)
314 # define COMPAT_TEST test_thread_flag(TIF_32BIT)
317 static inline size_t evdev_event_size(void)
320 sizeof(struct input_event_compat
) : sizeof(struct input_event
);
323 static int evdev_event_from_user(const char __user
*buffer
,
324 struct input_event
*event
)
327 struct input_event_compat compat_event
;
329 if (copy_from_user(&compat_event
, buffer
,
330 sizeof(struct input_event_compat
)))
333 event
->time
.tv_sec
= compat_event
.time
.tv_sec
;
334 event
->time
.tv_usec
= compat_event
.time
.tv_usec
;
335 event
->type
= compat_event
.type
;
336 event
->code
= compat_event
.code
;
337 event
->value
= compat_event
.value
;
340 if (copy_from_user(event
, buffer
, sizeof(struct input_event
)))
347 static int evdev_event_to_user(char __user
*buffer
,
348 const struct input_event
*event
)
351 struct input_event_compat compat_event
;
353 compat_event
.time
.tv_sec
= event
->time
.tv_sec
;
354 compat_event
.time
.tv_usec
= event
->time
.tv_usec
;
355 compat_event
.type
= event
->type
;
356 compat_event
.code
= event
->code
;
357 compat_event
.value
= event
->value
;
359 if (copy_to_user(buffer
, &compat_event
,
360 sizeof(struct input_event_compat
)))
364 if (copy_to_user(buffer
, event
, sizeof(struct input_event
)))
373 static inline size_t evdev_event_size(void)
375 return sizeof(struct input_event
);
378 static int evdev_event_from_user(const char __user
*buffer
,
379 struct input_event
*event
)
381 if (copy_from_user(event
, buffer
, sizeof(struct input_event
)))
387 static int evdev_event_to_user(char __user
*buffer
,
388 const struct input_event
*event
)
390 if (copy_to_user(buffer
, event
, sizeof(struct input_event
)))
396 #endif /* CONFIG_COMPAT */
398 static ssize_t
evdev_write(struct file
*file
, const char __user
*buffer
,
399 size_t count
, loff_t
*ppos
)
401 struct evdev_client
*client
= file
->private_data
;
402 struct evdev
*evdev
= client
->evdev
;
403 struct input_event event
;
406 retval
= mutex_lock_interruptible(&evdev
->mutex
);
415 while (retval
< count
) {
417 if (evdev_event_from_user(buffer
+ retval
, &event
)) {
422 input_inject_event(&evdev
->handle
,
423 event
.type
, event
.code
, event
.value
);
424 retval
+= evdev_event_size();
428 mutex_unlock(&evdev
->mutex
);
432 static int evdev_fetch_next_event(struct evdev_client
*client
,
433 struct input_event
*event
)
437 spin_lock_irq(&client
->buffer_lock
);
439 have_event
= client
->head
!= client
->tail
;
441 *event
= client
->buffer
[client
->tail
++];
442 client
->tail
&= EVDEV_BUFFER_SIZE
- 1;
445 spin_unlock_irq(&client
->buffer_lock
);
450 static ssize_t
evdev_read(struct file
*file
, char __user
*buffer
,
451 size_t count
, loff_t
*ppos
)
453 struct evdev_client
*client
= file
->private_data
;
454 struct evdev
*evdev
= client
->evdev
;
455 struct input_event event
;
458 if (count
< evdev_event_size())
461 if (client
->head
== client
->tail
&& evdev
->exist
&&
462 (file
->f_flags
& O_NONBLOCK
))
465 retval
= wait_event_interruptible(evdev
->wait
,
466 client
->head
!= client
->tail
|| !evdev
->exist
);
473 while (retval
+ evdev_event_size() <= count
&&
474 evdev_fetch_next_event(client
, &event
)) {
476 if (evdev_event_to_user(buffer
+ retval
, &event
))
479 retval
+= evdev_event_size();
485 /* No kernel lock - fine */
486 static unsigned int evdev_poll(struct file
*file
, poll_table
*wait
)
488 struct evdev_client
*client
= file
->private_data
;
489 struct evdev
*evdev
= client
->evdev
;
491 poll_wait(file
, &evdev
->wait
, wait
);
492 return ((client
->head
== client
->tail
) ? 0 : (POLLIN
| POLLRDNORM
)) |
493 (evdev
->exist
? 0 : (POLLHUP
| POLLERR
));
498 #define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
499 #define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
502 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
503 unsigned int maxlen
, void __user
*p
, int compat
)
508 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
512 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
513 if (copy_to_user((compat_long_t __user
*) p
+ i
,
514 (compat_long_t
*) bits
+
515 i
+ 1 - ((i
% 2) << 1),
516 sizeof(compat_long_t
)))
519 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
523 if (copy_to_user(p
, bits
, len
))
530 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
531 unsigned int maxlen
, void __user
*p
, int compat
)
534 BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
) :
535 BITS_TO_LONGS(maxbit
) * sizeof(long);
540 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
542 #endif /* __BIG_ENDIAN */
546 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
547 unsigned int maxlen
, void __user
*p
, int compat
)
549 int len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
554 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
557 #endif /* CONFIG_COMPAT */
559 static int str_to_user(const char *str
, unsigned int maxlen
, void __user
*p
)
566 len
= strlen(str
) + 1;
570 return copy_to_user(p
, str
, len
) ? -EFAULT
: len
;
573 static long evdev_do_ioctl(struct file
*file
, unsigned int cmd
,
574 void __user
*p
, int compat_mode
)
576 struct evdev_client
*client
= file
->private_data
;
577 struct evdev
*evdev
= client
->evdev
;
578 struct input_dev
*dev
= evdev
->handle
.dev
;
579 struct input_absinfo abs
;
580 struct ff_effect effect
;
581 int __user
*ip
= (int __user
*)p
;
588 return put_user(EV_VERSION
, ip
);
591 if (copy_to_user(p
, &dev
->id
, sizeof(struct input_id
)))
596 if (!test_bit(EV_REP
, dev
->evbit
))
598 if (put_user(dev
->rep
[REP_DELAY
], ip
))
600 if (put_user(dev
->rep
[REP_PERIOD
], ip
+ 1))
605 if (!test_bit(EV_REP
, dev
->evbit
))
609 if (get_user(v
, ip
+ 1))
612 input_inject_event(&evdev
->handle
, EV_REP
, REP_DELAY
, u
);
613 input_inject_event(&evdev
->handle
, EV_REP
, REP_PERIOD
, v
);
621 error
= input_get_keycode(dev
, t
, &v
);
625 if (put_user(v
, ip
+ 1))
631 if (get_user(t
, ip
) || get_user(v
, ip
+ 1))
634 return input_set_keycode(dev
, t
, v
);
637 if (copy_from_user(&effect
, p
, sizeof(effect
)))
640 error
= input_ff_upload(dev
, &effect
, file
);
642 if (put_user(effect
.id
, &(((struct ff_effect __user
*)p
)->id
)))
648 return input_ff_erase(dev
, (int)(unsigned long) p
, file
);
651 i
= test_bit(EV_FF
, dev
->evbit
) ?
652 dev
->ff
->max_effects
: 0;
659 return evdev_grab(evdev
, client
);
661 return evdev_ungrab(evdev
, client
);
665 if (_IOC_TYPE(cmd
) != 'E')
668 if (_IOC_DIR(cmd
) == _IOC_READ
) {
670 if ((_IOC_NR(cmd
) & ~EV_MAX
) == _IOC_NR(EVIOCGBIT(0, 0))) {
675 switch (_IOC_NR(cmd
) & EV_MAX
) {
677 case 0: bits
= dev
->evbit
; len
= EV_MAX
; break;
678 case EV_KEY
: bits
= dev
->keybit
; len
= KEY_MAX
; break;
679 case EV_REL
: bits
= dev
->relbit
; len
= REL_MAX
; break;
680 case EV_ABS
: bits
= dev
->absbit
; len
= ABS_MAX
; break;
681 case EV_MSC
: bits
= dev
->mscbit
; len
= MSC_MAX
; break;
682 case EV_LED
: bits
= dev
->ledbit
; len
= LED_MAX
; break;
683 case EV_SND
: bits
= dev
->sndbit
; len
= SND_MAX
; break;
684 case EV_FF
: bits
= dev
->ffbit
; len
= FF_MAX
; break;
685 case EV_SW
: bits
= dev
->swbit
; len
= SW_MAX
; break;
686 default: return -EINVAL
;
688 return bits_to_user(bits
, len
, _IOC_SIZE(cmd
), p
, compat_mode
);
691 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGKEY(0)))
692 return bits_to_user(dev
->key
, KEY_MAX
, _IOC_SIZE(cmd
),
695 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGLED(0)))
696 return bits_to_user(dev
->led
, LED_MAX
, _IOC_SIZE(cmd
),
699 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGSND(0)))
700 return bits_to_user(dev
->snd
, SND_MAX
, _IOC_SIZE(cmd
),
703 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGSW(0)))
704 return bits_to_user(dev
->sw
, SW_MAX
, _IOC_SIZE(cmd
),
707 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGNAME(0)))
708 return str_to_user(dev
->name
, _IOC_SIZE(cmd
), p
);
710 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGPHYS(0)))
711 return str_to_user(dev
->phys
, _IOC_SIZE(cmd
), p
);
713 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGUNIQ(0)))
714 return str_to_user(dev
->uniq
, _IOC_SIZE(cmd
), p
);
716 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCGABS(0))) {
718 t
= _IOC_NR(cmd
) & ABS_MAX
;
720 abs
.value
= dev
->abs
[t
];
721 abs
.minimum
= dev
->absmin
[t
];
722 abs
.maximum
= dev
->absmax
[t
];
723 abs
.fuzz
= dev
->absfuzz
[t
];
724 abs
.flat
= dev
->absflat
[t
];
726 if (copy_to_user(p
, &abs
, sizeof(struct input_absinfo
)))
734 if (_IOC_DIR(cmd
) == _IOC_WRITE
) {
736 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCSABS(0))) {
738 t
= _IOC_NR(cmd
) & ABS_MAX
;
740 if (copy_from_user(&abs
, p
,
741 sizeof(struct input_absinfo
)))
745 * Take event lock to ensure that we are not
746 * changing device parameters in the middle
749 spin_lock_irq(&dev
->event_lock
);
751 dev
->abs
[t
] = abs
.value
;
752 dev
->absmin
[t
] = abs
.minimum
;
753 dev
->absmax
[t
] = abs
.maximum
;
754 dev
->absfuzz
[t
] = abs
.fuzz
;
755 dev
->absflat
[t
] = abs
.flat
;
757 spin_unlock_irq(&dev
->event_lock
);
766 static long evdev_ioctl_handler(struct file
*file
, unsigned int cmd
,
767 void __user
*p
, int compat_mode
)
769 struct evdev_client
*client
= file
->private_data
;
770 struct evdev
*evdev
= client
->evdev
;
773 retval
= mutex_lock_interruptible(&evdev
->mutex
);
782 retval
= evdev_do_ioctl(file
, cmd
, p
, compat_mode
);
785 mutex_unlock(&evdev
->mutex
);
789 static long evdev_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
791 return evdev_ioctl_handler(file
, cmd
, (void __user
*)arg
, 0);
795 static long evdev_ioctl_compat(struct file
*file
,
796 unsigned int cmd
, unsigned long arg
)
798 return evdev_ioctl_handler(file
, cmd
, compat_ptr(arg
), 1);
802 static const struct file_operations evdev_fops
= {
803 .owner
= THIS_MODULE
,
805 .write
= evdev_write
,
808 .release
= evdev_release
,
809 .unlocked_ioctl
= evdev_ioctl
,
811 .compat_ioctl
= evdev_ioctl_compat
,
813 .fasync
= evdev_fasync
,
817 static int evdev_install_chrdev(struct evdev
*evdev
)
820 * No need to do any locking here as calls to connect and
821 * disconnect are serialized by the input core
823 evdev_table
[evdev
->minor
] = evdev
;
827 static void evdev_remove_chrdev(struct evdev
*evdev
)
830 * Lock evdev table to prevent race with evdev_open()
832 mutex_lock(&evdev_table_mutex
);
833 evdev_table
[evdev
->minor
] = NULL
;
834 mutex_unlock(&evdev_table_mutex
);
838 * Mark device non-existent. This disables writes, ioctls and
839 * prevents new users from opening the device. Already posted
840 * blocking reads will stay, however new ones will fail.
842 static void evdev_mark_dead(struct evdev
*evdev
)
844 mutex_lock(&evdev
->mutex
);
846 mutex_unlock(&evdev
->mutex
);
849 static void evdev_cleanup(struct evdev
*evdev
)
851 struct input_handle
*handle
= &evdev
->handle
;
853 evdev_mark_dead(evdev
);
855 evdev_remove_chrdev(evdev
);
857 /* evdev is marked dead so no one else accesses evdev->open */
859 input_flush_device(handle
, NULL
);
860 input_close_device(handle
);
865 * Create new evdev device. Note that input core serializes calls
866 * to connect and disconnect so we don't need to lock evdev_table here.
868 static int evdev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
869 const struct input_device_id
*id
)
875 for (minor
= 0; minor
< EVDEV_MINORS
; minor
++)
876 if (!evdev_table
[minor
])
879 if (minor
== EVDEV_MINORS
) {
880 printk(KERN_ERR
"evdev: no more free evdev devices\n");
884 evdev
= kzalloc(sizeof(struct evdev
), GFP_KERNEL
);
888 INIT_LIST_HEAD(&evdev
->client_list
);
889 spin_lock_init(&evdev
->client_lock
);
890 mutex_init(&evdev
->mutex
);
891 init_waitqueue_head(&evdev
->wait
);
893 snprintf(evdev
->name
, sizeof(evdev
->name
), "event%d", minor
);
895 evdev
->minor
= minor
;
897 evdev
->handle
.dev
= input_get_device(dev
);
898 evdev
->handle
.name
= evdev
->name
;
899 evdev
->handle
.handler
= handler
;
900 evdev
->handle
.private = evdev
;
902 strlcpy(evdev
->dev
.bus_id
, evdev
->name
, sizeof(evdev
->dev
.bus_id
));
903 evdev
->dev
.devt
= MKDEV(INPUT_MAJOR
, EVDEV_MINOR_BASE
+ minor
);
904 evdev
->dev
.class = &input_class
;
905 evdev
->dev
.parent
= &dev
->dev
;
906 evdev
->dev
.release
= evdev_free
;
907 device_initialize(&evdev
->dev
);
909 error
= input_register_handle(&evdev
->handle
);
913 error
= evdev_install_chrdev(evdev
);
915 goto err_unregister_handle
;
917 error
= device_add(&evdev
->dev
);
919 goto err_cleanup_evdev
;
924 evdev_cleanup(evdev
);
925 err_unregister_handle
:
926 input_unregister_handle(&evdev
->handle
);
928 put_device(&evdev
->dev
);
932 static void evdev_disconnect(struct input_handle
*handle
)
934 struct evdev
*evdev
= handle
->private;
936 device_del(&evdev
->dev
);
937 evdev_cleanup(evdev
);
938 input_unregister_handle(handle
);
939 put_device(&evdev
->dev
);
942 static const struct input_device_id evdev_ids
[] = {
943 { .driver_info
= 1 }, /* Matches all devices */
944 { }, /* Terminating zero entry */
947 MODULE_DEVICE_TABLE(input
, evdev_ids
);
949 static struct input_handler evdev_handler
= {
950 .event
= evdev_event
,
951 .connect
= evdev_connect
,
952 .disconnect
= evdev_disconnect
,
954 .minor
= EVDEV_MINOR_BASE
,
956 .id_table
= evdev_ids
,
959 static int __init
evdev_init(void)
961 return input_register_handler(&evdev_handler
);
964 static void __exit
evdev_exit(void)
966 input_unregister_handler(&evdev_handler
);
969 module_init(evdev_init
);
970 module_exit(evdev_exit
);
972 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
973 MODULE_DESCRIPTION("Input driver event char devices");
974 MODULE_LICENSE("GPL");