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_MIN_BUFFER_SIZE 64U
14 #define EVDEV_BUF_PACKETS 8
16 #include <linux/poll.h>
17 #include <linux/sched.h>
18 #include <linux/slab.h>
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/input.h>
22 #include <linux/major.h>
23 #include <linux/device.h>
24 #include "input-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 */
42 spinlock_t buffer_lock
; /* protects access to buffer, head and tail */
43 struct fasync_struct
*fasync
;
45 struct list_head node
;
47 struct input_event buffer
[];
50 static struct evdev
*evdev_table
[EVDEV_MINORS
];
51 static DEFINE_MUTEX(evdev_table_mutex
);
53 static void evdev_pass_event(struct evdev_client
*client
,
54 struct input_event
*event
)
57 * Interrupts are disabled, just acquire the lock.
58 * Make sure we don't leave with the client buffer
59 * "empty" by having client->head == client->tail.
61 spin_lock(&client
->buffer_lock
);
63 client
->buffer
[client
->head
++] = *event
;
64 client
->head
&= client
->bufsize
- 1;
65 } while (client
->head
== client
->tail
);
66 spin_unlock(&client
->buffer_lock
);
68 if (event
->type
== EV_SYN
)
69 kill_fasync(&client
->fasync
, SIGIO
, POLL_IN
);
73 * Pass incoming event to all connected clients.
75 static void evdev_event(struct input_handle
*handle
,
76 unsigned int type
, unsigned int code
, int value
)
78 struct evdev
*evdev
= handle
->private;
79 struct evdev_client
*client
;
80 struct input_event event
;
82 do_gettimeofday(&event
.time
);
89 client
= rcu_dereference(evdev
->grab
);
91 evdev_pass_event(client
, &event
);
93 list_for_each_entry_rcu(client
, &evdev
->client_list
, node
)
94 evdev_pass_event(client
, &event
);
98 wake_up_interruptible(&evdev
->wait
);
101 static int evdev_fasync(int fd
, struct file
*file
, int on
)
103 struct evdev_client
*client
= file
->private_data
;
105 return fasync_helper(fd
, file
, on
, &client
->fasync
);
108 static int evdev_flush(struct file
*file
, fl_owner_t id
)
110 struct evdev_client
*client
= file
->private_data
;
111 struct evdev
*evdev
= client
->evdev
;
114 retval
= mutex_lock_interruptible(&evdev
->mutex
);
121 retval
= input_flush_device(&evdev
->handle
, file
);
123 mutex_unlock(&evdev
->mutex
);
127 static void evdev_free(struct device
*dev
)
129 struct evdev
*evdev
= container_of(dev
, struct evdev
, dev
);
131 input_put_device(evdev
->handle
.dev
);
136 * Grabs an event device (along with underlying input device).
137 * This function is called with evdev->mutex taken.
139 static int evdev_grab(struct evdev
*evdev
, struct evdev_client
*client
)
146 error
= input_grab_device(&evdev
->handle
);
150 rcu_assign_pointer(evdev
->grab
, client
);
156 static int evdev_ungrab(struct evdev
*evdev
, struct evdev_client
*client
)
158 if (evdev
->grab
!= client
)
161 rcu_assign_pointer(evdev
->grab
, NULL
);
163 input_release_device(&evdev
->handle
);
168 static void evdev_attach_client(struct evdev
*evdev
,
169 struct evdev_client
*client
)
171 spin_lock(&evdev
->client_lock
);
172 list_add_tail_rcu(&client
->node
, &evdev
->client_list
);
173 spin_unlock(&evdev
->client_lock
);
177 static void evdev_detach_client(struct evdev
*evdev
,
178 struct evdev_client
*client
)
180 spin_lock(&evdev
->client_lock
);
181 list_del_rcu(&client
->node
);
182 spin_unlock(&evdev
->client_lock
);
186 static int evdev_open_device(struct evdev
*evdev
)
190 retval
= mutex_lock_interruptible(&evdev
->mutex
);
196 else if (!evdev
->open
++) {
197 retval
= input_open_device(&evdev
->handle
);
202 mutex_unlock(&evdev
->mutex
);
206 static void evdev_close_device(struct evdev
*evdev
)
208 mutex_lock(&evdev
->mutex
);
210 if (evdev
->exist
&& !--evdev
->open
)
211 input_close_device(&evdev
->handle
);
213 mutex_unlock(&evdev
->mutex
);
217 * Wake up users waiting for IO so they can disconnect from
220 static void evdev_hangup(struct evdev
*evdev
)
222 struct evdev_client
*client
;
224 spin_lock(&evdev
->client_lock
);
225 list_for_each_entry(client
, &evdev
->client_list
, node
)
226 kill_fasync(&client
->fasync
, SIGIO
, POLL_HUP
);
227 spin_unlock(&evdev
->client_lock
);
229 wake_up_interruptible(&evdev
->wait
);
232 static int evdev_release(struct inode
*inode
, struct file
*file
)
234 struct evdev_client
*client
= file
->private_data
;
235 struct evdev
*evdev
= client
->evdev
;
237 mutex_lock(&evdev
->mutex
);
238 if (evdev
->grab
== client
)
239 evdev_ungrab(evdev
, client
);
240 mutex_unlock(&evdev
->mutex
);
242 evdev_detach_client(evdev
, client
);
245 evdev_close_device(evdev
);
246 put_device(&evdev
->dev
);
251 static unsigned int evdev_compute_buffer_size(struct input_dev
*dev
)
253 unsigned int n_events
=
254 max(dev
->hint_events_per_packet
* EVDEV_BUF_PACKETS
,
255 EVDEV_MIN_BUFFER_SIZE
);
257 return roundup_pow_of_two(n_events
);
260 static int evdev_open(struct inode
*inode
, struct file
*file
)
263 struct evdev_client
*client
;
264 int i
= iminor(inode
) - EVDEV_MINOR_BASE
;
265 unsigned int bufsize
;
268 if (i
>= EVDEV_MINORS
)
271 error
= mutex_lock_interruptible(&evdev_table_mutex
);
274 evdev
= evdev_table
[i
];
276 get_device(&evdev
->dev
);
277 mutex_unlock(&evdev_table_mutex
);
282 bufsize
= evdev_compute_buffer_size(evdev
->handle
.dev
);
284 client
= kzalloc(sizeof(struct evdev_client
) +
285 bufsize
* sizeof(struct input_event
),
292 client
->bufsize
= bufsize
;
293 spin_lock_init(&client
->buffer_lock
);
294 client
->evdev
= evdev
;
295 evdev_attach_client(evdev
, client
);
297 error
= evdev_open_device(evdev
);
299 goto err_free_client
;
301 file
->private_data
= client
;
302 nonseekable_open(inode
, file
);
307 evdev_detach_client(evdev
, client
);
310 put_device(&evdev
->dev
);
314 static ssize_t
evdev_write(struct file
*file
, const char __user
*buffer
,
315 size_t count
, loff_t
*ppos
)
317 struct evdev_client
*client
= file
->private_data
;
318 struct evdev
*evdev
= client
->evdev
;
319 struct input_event event
;
322 retval
= mutex_lock_interruptible(&evdev
->mutex
);
331 while (retval
< count
) {
333 if (input_event_from_user(buffer
+ retval
, &event
)) {
338 input_inject_event(&evdev
->handle
,
339 event
.type
, event
.code
, event
.value
);
340 retval
+= input_event_size();
344 mutex_unlock(&evdev
->mutex
);
348 static int evdev_fetch_next_event(struct evdev_client
*client
,
349 struct input_event
*event
)
353 spin_lock_irq(&client
->buffer_lock
);
355 have_event
= client
->head
!= client
->tail
;
357 *event
= client
->buffer
[client
->tail
++];
358 client
->tail
&= client
->bufsize
- 1;
361 spin_unlock_irq(&client
->buffer_lock
);
366 static ssize_t
evdev_read(struct file
*file
, char __user
*buffer
,
367 size_t count
, loff_t
*ppos
)
369 struct evdev_client
*client
= file
->private_data
;
370 struct evdev
*evdev
= client
->evdev
;
371 struct input_event event
;
374 if (count
< input_event_size())
377 if (client
->head
== client
->tail
&& evdev
->exist
&&
378 (file
->f_flags
& O_NONBLOCK
))
381 retval
= wait_event_interruptible(evdev
->wait
,
382 client
->head
!= client
->tail
|| !evdev
->exist
);
389 while (retval
+ input_event_size() <= count
&&
390 evdev_fetch_next_event(client
, &event
)) {
392 if (input_event_to_user(buffer
+ retval
, &event
))
395 retval
+= input_event_size();
401 /* No kernel lock - fine */
402 static unsigned int evdev_poll(struct file
*file
, poll_table
*wait
)
404 struct evdev_client
*client
= file
->private_data
;
405 struct evdev
*evdev
= client
->evdev
;
408 poll_wait(file
, &evdev
->wait
, wait
);
410 mask
= evdev
->exist
? POLLOUT
| POLLWRNORM
: POLLHUP
| POLLERR
;
411 if (client
->head
!= client
->tail
)
412 mask
|= POLLIN
| POLLRDNORM
;
419 #define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
420 #define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
423 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
424 unsigned int maxlen
, void __user
*p
, int compat
)
429 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
433 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
434 if (copy_to_user((compat_long_t __user
*) p
+ i
,
435 (compat_long_t
*) bits
+
436 i
+ 1 - ((i
% 2) << 1),
437 sizeof(compat_long_t
)))
440 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
444 if (copy_to_user(p
, bits
, len
))
451 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
452 unsigned int maxlen
, void __user
*p
, int compat
)
455 BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
) :
456 BITS_TO_LONGS(maxbit
) * sizeof(long);
461 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
463 #endif /* __BIG_ENDIAN */
467 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
468 unsigned int maxlen
, void __user
*p
, int compat
)
470 int len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
475 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
478 #endif /* CONFIG_COMPAT */
480 static int str_to_user(const char *str
, unsigned int maxlen
, void __user
*p
)
487 len
= strlen(str
) + 1;
491 return copy_to_user(p
, str
, len
) ? -EFAULT
: len
;
494 #define OLD_KEY_MAX 0x1ff
495 static int handle_eviocgbit(struct input_dev
*dev
,
496 unsigned int type
, unsigned int size
,
497 void __user
*p
, int compat_mode
)
499 static unsigned long keymax_warn_time
;
505 case 0: bits
= dev
->evbit
; len
= EV_MAX
; break;
506 case EV_KEY
: bits
= dev
->keybit
; len
= KEY_MAX
; break;
507 case EV_REL
: bits
= dev
->relbit
; len
= REL_MAX
; break;
508 case EV_ABS
: bits
= dev
->absbit
; len
= ABS_MAX
; break;
509 case EV_MSC
: bits
= dev
->mscbit
; len
= MSC_MAX
; break;
510 case EV_LED
: bits
= dev
->ledbit
; len
= LED_MAX
; break;
511 case EV_SND
: bits
= dev
->sndbit
; len
= SND_MAX
; break;
512 case EV_FF
: bits
= dev
->ffbit
; len
= FF_MAX
; break;
513 case EV_SW
: bits
= dev
->swbit
; len
= SW_MAX
; break;
514 default: return -EINVAL
;
518 * Work around bugs in userspace programs that like to do
519 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
520 * should be in bytes, not in bits.
522 if (type
== EV_KEY
&& size
== OLD_KEY_MAX
) {
524 if (printk_timed_ratelimit(&keymax_warn_time
, 10 * 1000))
526 "evdev.c(EVIOCGBIT): Suspicious buffer size %u, "
527 "limiting output to %zu bytes. See "
528 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
530 BITS_TO_LONGS(OLD_KEY_MAX
) * sizeof(long));
533 return bits_to_user(bits
, len
, size
, p
, compat_mode
);
537 static int evdev_handle_get_keycode(struct input_dev
*dev
,
538 void __user
*p
, size_t size
)
540 struct input_keymap_entry ke
;
543 memset(&ke
, 0, sizeof(ke
));
545 if (size
== sizeof(unsigned int[2])) {
547 int __user
*ip
= (int __user
*)p
;
549 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
552 ke
.len
= sizeof(unsigned int);
555 error
= input_get_keycode(dev
, &ke
);
559 if (put_user(ke
.keycode
, ip
+ 1))
563 size
= min(size
, sizeof(ke
));
565 if (copy_from_user(&ke
, p
, size
))
568 error
= input_get_keycode(dev
, &ke
);
572 if (copy_to_user(p
, &ke
, size
))
578 static int evdev_handle_set_keycode(struct input_dev
*dev
,
579 void __user
*p
, size_t size
)
581 struct input_keymap_entry ke
;
583 memset(&ke
, 0, sizeof(ke
));
585 if (size
== sizeof(unsigned int[2])) {
587 int __user
*ip
= (int __user
*)p
;
589 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
592 if (get_user(ke
.keycode
, ip
+ 1))
595 ke
.len
= sizeof(unsigned int);
599 size
= min(size
, sizeof(ke
));
601 if (copy_from_user(&ke
, p
, size
))
604 if (ke
.len
> sizeof(ke
.scancode
))
608 return input_set_keycode(dev
, &ke
);
611 static long evdev_do_ioctl(struct file
*file
, unsigned int cmd
,
612 void __user
*p
, int compat_mode
)
614 struct evdev_client
*client
= file
->private_data
;
615 struct evdev
*evdev
= client
->evdev
;
616 struct input_dev
*dev
= evdev
->handle
.dev
;
617 struct input_absinfo abs
;
618 struct ff_effect effect
;
619 int __user
*ip
= (int __user
*)p
;
620 unsigned int i
, t
, u
, v
;
624 /* First we check for fixed-length commands */
628 return put_user(EV_VERSION
, ip
);
631 if (copy_to_user(p
, &dev
->id
, sizeof(struct input_id
)))
636 if (!test_bit(EV_REP
, dev
->evbit
))
638 if (put_user(dev
->rep
[REP_DELAY
], ip
))
640 if (put_user(dev
->rep
[REP_PERIOD
], ip
+ 1))
645 if (!test_bit(EV_REP
, dev
->evbit
))
649 if (get_user(v
, ip
+ 1))
652 input_inject_event(&evdev
->handle
, EV_REP
, REP_DELAY
, u
);
653 input_inject_event(&evdev
->handle
, EV_REP
, REP_PERIOD
, v
);
658 return input_ff_erase(dev
, (int)(unsigned long) p
, file
);
661 i
= test_bit(EV_FF
, dev
->evbit
) ?
662 dev
->ff
->max_effects
: 0;
669 return evdev_grab(evdev
, client
);
671 return evdev_ungrab(evdev
, client
);
674 size
= _IOC_SIZE(cmd
);
676 /* Now check variable-length commands */
677 #define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
678 switch (EVIOC_MASK_SIZE(cmd
)) {
681 return bits_to_user(dev
->key
, KEY_MAX
, size
, p
, compat_mode
);
684 return bits_to_user(dev
->led
, LED_MAX
, size
, p
, compat_mode
);
687 return bits_to_user(dev
->snd
, SND_MAX
, size
, p
, compat_mode
);
690 return bits_to_user(dev
->sw
, SW_MAX
, size
, p
, compat_mode
);
693 return str_to_user(dev
->name
, size
, p
);
696 return str_to_user(dev
->phys
, size
, p
);
699 return str_to_user(dev
->uniq
, size
, p
);
701 case EVIOC_MASK_SIZE(EVIOCSFF
):
702 if (input_ff_effect_from_user(p
, size
, &effect
))
705 error
= input_ff_upload(dev
, &effect
, file
);
707 if (put_user(effect
.id
, &(((struct ff_effect __user
*)p
)->id
)))
712 case EVIOC_MASK_SIZE(EVIOCGKEYCODE
):
713 return evdev_handle_get_keycode(dev
, p
, size
);
715 case EVIOC_MASK_SIZE(EVIOCSKEYCODE
):
716 return evdev_handle_set_keycode(dev
, p
, size
);
719 /* Multi-number variable-length handlers */
720 if (_IOC_TYPE(cmd
) != 'E')
723 if (_IOC_DIR(cmd
) == _IOC_READ
) {
725 if ((_IOC_NR(cmd
) & ~EV_MAX
) == _IOC_NR(EVIOCGBIT(0, 0)))
726 return handle_eviocgbit(dev
,
727 _IOC_NR(cmd
) & EV_MAX
, size
,
730 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCGABS(0))) {
732 t
= _IOC_NR(cmd
) & ABS_MAX
;
733 abs
= dev
->absinfo
[t
];
735 if (copy_to_user(p
, &abs
, min_t(size_t,
736 size
, sizeof(struct input_absinfo
))))
743 if (_IOC_DIR(cmd
) == _IOC_READ
) {
745 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCSABS(0))) {
747 t
= _IOC_NR(cmd
) & ABS_MAX
;
749 if (copy_from_user(&abs
, p
, min_t(size_t,
750 size
, sizeof(struct input_absinfo
))))
753 if (size
< sizeof(struct input_absinfo
))
756 /* We can't change number of reserved MT slots */
757 if (t
== ABS_MT_SLOT
)
761 * Take event lock to ensure that we are not
762 * changing device parameters in the middle
765 spin_lock_irq(&dev
->event_lock
);
766 dev
->absinfo
[t
] = abs
;
767 spin_unlock_irq(&dev
->event_lock
);
776 static long evdev_ioctl_handler(struct file
*file
, unsigned int cmd
,
777 void __user
*p
, int compat_mode
)
779 struct evdev_client
*client
= file
->private_data
;
780 struct evdev
*evdev
= client
->evdev
;
783 retval
= mutex_lock_interruptible(&evdev
->mutex
);
792 retval
= evdev_do_ioctl(file
, cmd
, p
, compat_mode
);
795 mutex_unlock(&evdev
->mutex
);
799 static long evdev_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
801 return evdev_ioctl_handler(file
, cmd
, (void __user
*)arg
, 0);
805 static long evdev_ioctl_compat(struct file
*file
,
806 unsigned int cmd
, unsigned long arg
)
808 return evdev_ioctl_handler(file
, cmd
, compat_ptr(arg
), 1);
812 static const struct file_operations evdev_fops
= {
813 .owner
= THIS_MODULE
,
815 .write
= evdev_write
,
818 .release
= evdev_release
,
819 .unlocked_ioctl
= evdev_ioctl
,
821 .compat_ioctl
= evdev_ioctl_compat
,
823 .fasync
= evdev_fasync
,
827 static int evdev_install_chrdev(struct evdev
*evdev
)
830 * No need to do any locking here as calls to connect and
831 * disconnect are serialized by the input core
833 evdev_table
[evdev
->minor
] = evdev
;
837 static void evdev_remove_chrdev(struct evdev
*evdev
)
840 * Lock evdev table to prevent race with evdev_open()
842 mutex_lock(&evdev_table_mutex
);
843 evdev_table
[evdev
->minor
] = NULL
;
844 mutex_unlock(&evdev_table_mutex
);
848 * Mark device non-existent. This disables writes, ioctls and
849 * prevents new users from opening the device. Already posted
850 * blocking reads will stay, however new ones will fail.
852 static void evdev_mark_dead(struct evdev
*evdev
)
854 mutex_lock(&evdev
->mutex
);
855 evdev
->exist
= false;
856 mutex_unlock(&evdev
->mutex
);
859 static void evdev_cleanup(struct evdev
*evdev
)
861 struct input_handle
*handle
= &evdev
->handle
;
863 evdev_mark_dead(evdev
);
865 evdev_remove_chrdev(evdev
);
867 /* evdev is marked dead so no one else accesses evdev->open */
869 input_flush_device(handle
, NULL
);
870 input_close_device(handle
);
875 * Create new evdev device. Note that input core serializes calls
876 * to connect and disconnect so we don't need to lock evdev_table here.
878 static int evdev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
879 const struct input_device_id
*id
)
885 for (minor
= 0; minor
< EVDEV_MINORS
; minor
++)
886 if (!evdev_table
[minor
])
889 if (minor
== EVDEV_MINORS
) {
890 printk(KERN_ERR
"evdev: no more free evdev devices\n");
894 evdev
= kzalloc(sizeof(struct evdev
), GFP_KERNEL
);
898 INIT_LIST_HEAD(&evdev
->client_list
);
899 spin_lock_init(&evdev
->client_lock
);
900 mutex_init(&evdev
->mutex
);
901 init_waitqueue_head(&evdev
->wait
);
903 dev_set_name(&evdev
->dev
, "event%d", minor
);
905 evdev
->minor
= minor
;
907 evdev
->handle
.dev
= input_get_device(dev
);
908 evdev
->handle
.name
= dev_name(&evdev
->dev
);
909 evdev
->handle
.handler
= handler
;
910 evdev
->handle
.private = evdev
;
912 evdev
->dev
.devt
= MKDEV(INPUT_MAJOR
, EVDEV_MINOR_BASE
+ minor
);
913 evdev
->dev
.class = &input_class
;
914 evdev
->dev
.parent
= &dev
->dev
;
915 evdev
->dev
.release
= evdev_free
;
916 device_initialize(&evdev
->dev
);
918 error
= input_register_handle(&evdev
->handle
);
922 error
= evdev_install_chrdev(evdev
);
924 goto err_unregister_handle
;
926 error
= device_add(&evdev
->dev
);
928 goto err_cleanup_evdev
;
933 evdev_cleanup(evdev
);
934 err_unregister_handle
:
935 input_unregister_handle(&evdev
->handle
);
937 put_device(&evdev
->dev
);
941 static void evdev_disconnect(struct input_handle
*handle
)
943 struct evdev
*evdev
= handle
->private;
945 device_del(&evdev
->dev
);
946 evdev_cleanup(evdev
);
947 input_unregister_handle(handle
);
948 put_device(&evdev
->dev
);
951 static const struct input_device_id evdev_ids
[] = {
952 { .driver_info
= 1 }, /* Matches all devices */
953 { }, /* Terminating zero entry */
956 MODULE_DEVICE_TABLE(input
, evdev_ids
);
958 static struct input_handler evdev_handler
= {
959 .event
= evdev_event
,
960 .connect
= evdev_connect
,
961 .disconnect
= evdev_disconnect
,
963 .minor
= EVDEV_MINOR_BASE
,
965 .id_table
= evdev_ids
,
968 static int __init
evdev_init(void)
970 return input_register_handler(&evdev_handler
);
973 static void __exit
evdev_exit(void)
975 input_unregister_handler(&evdev_handler
);
978 module_init(evdev_init
);
979 module_exit(evdev_exit
);
981 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
982 MODULE_DESCRIPTION("Input driver event char devices");
983 MODULE_LICENSE("GPL");