uinput.c 15.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 *  User level driver support for input subsystem
 *
 * Heavily based on evdev.c by Vojtech Pavlik
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
 *
 * Changes/Revisions:
23 24 25
 *	0.3	09/04/2006 (Anssi Hannula <anssi.hannula@gmail.com>)
 *		- updated ff support for the changes in kernel interface
 *		- added MODULE_VERSION
L
Linus Torvalds 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
 *	0.2	16/10/2004 (Micah Dowty <micah@navi.cx>)
 *		- added force feedback support
 *              - added UI_SET_PHYS
 *	0.1	20/06/2002
 *		- first public version
 */
#include <linux/poll.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/smp_lock.h>
#include <linux/fs.h>
#include <linux/miscdevice.h>
#include <linux/uinput.h>

static int uinput_dev_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{
43
	struct uinput_device	*udev = input_get_drvdata(dev);
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51 52 53 54 55

	udev->buff[udev->head].type = type;
	udev->buff[udev->head].code = code;
	udev->buff[udev->head].value = value;
	do_gettimeofday(&udev->buff[udev->head].time);
	udev->head = (udev->head + 1) % UINPUT_BUFFER_SIZE;

	wake_up_interruptible(&udev->waitq);

	return 0;
}

56
static int uinput_request_alloc_id(struct uinput_device *udev, struct uinput_request *request)
L
Linus Torvalds 已提交
57 58 59
{
	/* Atomically allocate an ID for the given request. Returns 0 on success. */
	int id;
60
	int err = -1;
L
Linus Torvalds 已提交
61

62
	spin_lock(&udev->requests_lock);
63 64

	for (id = 0; id < UINPUT_NUM_REQUESTS; id++)
L
Linus Torvalds 已提交
65 66
		if (!udev->requests[id]) {
			request->id = id;
67
			udev->requests[id] = request;
68 69
			err = 0;
			break;
L
Linus Torvalds 已提交
70
		}
71

72
	spin_unlock(&udev->requests_lock);
73
	return err;
L
Linus Torvalds 已提交
74 75 76 77 78 79 80 81 82 83
}

static struct uinput_request* uinput_request_find(struct uinput_device *udev, int id)
{
	/* Find an input request, by ID. Returns NULL if the ID isn't valid. */
	if (id >= UINPUT_NUM_REQUESTS || id < 0)
		return NULL;
	return udev->requests[id];
}

84
static inline int uinput_request_reserve_slot(struct uinput_device *udev, struct uinput_request *request)
L
Linus Torvalds 已提交
85
{
86 87 88 89
	/* Allocate slot. If none are available right away, wait. */
	return wait_event_interruptible(udev->requests_waitq,
					!uinput_request_alloc_id(udev, request));
}
L
Linus Torvalds 已提交
90

91 92 93 94
static void uinput_request_done(struct uinput_device *udev, struct uinput_request *request)
{
	/* Mark slot as available */
	udev->requests[request->id] = NULL;
95
	wake_up(&udev->requests_waitq);
96 97

	complete(&request->done);
L
Linus Torvalds 已提交
98 99
}

100
static int uinput_request_submit(struct input_dev *dev, struct uinput_request *request)
L
Linus Torvalds 已提交
101 102 103 104 105
{
	/* Tell our userspace app about this new request by queueing an input event */
	uinput_dev_event(dev, EV_UINPUT, request->code, request->id);

	/* Wait for the request to complete */
106 107
	wait_for_completion(&request->done);
	return request->retval;
L
Linus Torvalds 已提交
108 109
}

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
static void uinput_dev_set_gain(struct input_dev *dev, u16 gain)
{
	uinput_dev_event(dev, EV_FF, FF_GAIN, gain);
}

static void uinput_dev_set_autocenter(struct input_dev *dev, u16 magnitude)
{
	uinput_dev_event(dev, EV_FF, FF_AUTOCENTER, magnitude);
}

static int uinput_dev_playback(struct input_dev *dev, int effect_id, int value)
{
	return uinput_dev_event(dev, EV_FF, effect_id, value);
}

static int uinput_dev_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *old)
L
Linus Torvalds 已提交
126 127
{
	struct uinput_request request;
128
	int retval;
L
Linus Torvalds 已提交
129

130 131 132
	request.id = -1;
	init_completion(&request.done);
	request.code = UI_FF_UPLOAD;
133 134
	request.u.upload.effect = effect;
	request.u.upload.old = old;
135

136
	retval = uinput_request_reserve_slot(input_get_drvdata(dev), &request);
137 138 139 140
	if (!retval)
		retval = uinput_request_submit(dev, &request);

	return retval;
L
Linus Torvalds 已提交
141 142 143 144 145
}

static int uinput_dev_erase_effect(struct input_dev *dev, int effect_id)
{
	struct uinput_request request;
146
	int retval;
L
Linus Torvalds 已提交
147 148 149 150

	if (!test_bit(EV_FF, dev->evbit))
		return -ENOSYS;

151 152 153
	request.id = -1;
	init_completion(&request.done);
	request.code = UI_FF_ERASE;
L
Linus Torvalds 已提交
154
	request.u.effect_id = effect_id;
155

156
	retval = uinput_request_reserve_slot(input_get_drvdata(dev), &request);
157 158 159 160
	if (!retval)
		retval = uinput_request_submit(dev, &request);

	return retval;
L
Linus Torvalds 已提交
161 162
}

163
static void uinput_destroy_device(struct uinput_device *udev)
L
Linus Torvalds 已提交
164
{
165 166 167 168 169 170 171 172 173 174 175 176
	const char *name, *phys;

	if (udev->dev) {
		name = udev->dev->name;
		phys = udev->dev->phys;
		if (udev->state == UIST_CREATED)
			input_unregister_device(udev->dev);
		else
			input_free_device(udev->dev);
		kfree(name);
		kfree(phys);
		udev->dev = NULL;
L
Linus Torvalds 已提交
177 178
	}

179
	udev->state = UIST_NEW_DEVICE;
L
Linus Torvalds 已提交
180 181
}

182
static int uinput_create_device(struct uinput_device *udev)
L
Linus Torvalds 已提交
183
{
184
	struct input_dev *dev = udev->dev;
185 186 187 188
	int error;

	if (udev->state != UIST_SETUP_COMPLETE) {
		printk(KERN_DEBUG "%s: write device info first\n", UINPUT_NAME);
L
Linus Torvalds 已提交
189 190 191
		return -EINVAL;
	}

192 193 194 195 196 197 198 199 200 201
	if (udev->ff_effects_max) {
		error = input_ff_create(dev, udev->ff_effects_max);
		if (error)
			goto fail1;

		dev->ff->upload = uinput_dev_upload_effect;
		dev->ff->erase = uinput_dev_erase_effect;
		dev->ff->playback = uinput_dev_playback;
		dev->ff->set_gain = uinput_dev_set_gain;
		dev->ff->set_autocenter = uinput_dev_set_autocenter;
202
	}
L
Linus Torvalds 已提交
203

204 205 206 207
	error = input_register_device(udev->dev);
	if (error)
		goto fail2;

208
	udev->state = UIST_CREATED;
L
Linus Torvalds 已提交
209 210

	return 0;
211 212 213 214

 fail2:	input_ff_destroy(dev);
 fail1: uinput_destroy_device(udev);
	return error;
L
Linus Torvalds 已提交
215 216 217 218
}

static int uinput_open(struct inode *inode, struct file *file)
{
219
	struct uinput_device *newdev;
L
Linus Torvalds 已提交
220

221
	newdev = kzalloc(sizeof(struct uinput_device), GFP_KERNEL);
L
Linus Torvalds 已提交
222
	if (!newdev)
223 224
		return -ENOMEM;

225
	mutex_init(&newdev->mutex);
226
	spin_lock_init(&newdev->requests_lock);
L
Linus Torvalds 已提交
227
	init_waitqueue_head(&newdev->requests_waitq);
228 229
	init_waitqueue_head(&newdev->waitq);
	newdev->state = UIST_NEW_DEVICE;
L
Linus Torvalds 已提交
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266

	file->private_data = newdev;

	return 0;
}

static int uinput_validate_absbits(struct input_dev *dev)
{
	unsigned int cnt;
	int retval = 0;

	for (cnt = 0; cnt < ABS_MAX + 1; cnt++) {
		if (!test_bit(cnt, dev->absbit))
			continue;

		if ((dev->absmax[cnt] <= dev->absmin[cnt])) {
			printk(KERN_DEBUG
				"%s: invalid abs[%02x] min:%d max:%d\n",
				UINPUT_NAME, cnt,
				dev->absmin[cnt], dev->absmax[cnt]);
			retval = -EINVAL;
			break;
		}

		if (dev->absflat[cnt] > (dev->absmax[cnt] - dev->absmin[cnt])) {
			printk(KERN_DEBUG
				"%s: absflat[%02x] out of range: %d "
				"(min:%d/max:%d)\n",
				UINPUT_NAME, cnt, dev->absflat[cnt],
				dev->absmin[cnt], dev->absmax[cnt]);
			retval = -EINVAL;
			break;
		}
	}
	return retval;
}

267 268 269 270 271 272 273
static int uinput_allocate_device(struct uinput_device *udev)
{
	udev->dev = input_allocate_device();
	if (!udev->dev)
		return -ENOMEM;

	udev->dev->event = uinput_dev_event;
274
	input_set_drvdata(udev->dev, udev);
275 276 277 278 279

	return 0;
}

static int uinput_setup_device(struct uinput_device *udev, const char __user *buffer, size_t count)
L
Linus Torvalds 已提交
280 281 282
{
	struct uinput_user_dev	*user_dev;
	struct input_dev	*dev;
283
	char			*name;
284 285
	int			size;
	int			retval;
L
Linus Torvalds 已提交
286

287 288 289 290 291 292 293 294
	if (count != sizeof(struct uinput_user_dev))
		return -EINVAL;

	if (!udev->dev) {
		retval = uinput_allocate_device(udev);
		if (retval)
			return retval;
	}
L
Linus Torvalds 已提交
295 296 297

	dev = udev->dev;

298
	user_dev = kmalloc(sizeof(struct uinput_user_dev), GFP_KERNEL);
299 300
	if (!user_dev)
		return -ENOMEM;
L
Linus Torvalds 已提交
301 302 303 304 305 306

	if (copy_from_user(user_dev, buffer, sizeof(struct uinput_user_dev))) {
		retval = -EFAULT;
		goto exit;
	}

307 308
	udev->ff_effects_max = user_dev->ff_effects_max;

L
Linus Torvalds 已提交
309
	size = strnlen(user_dev->name, UINPUT_MAX_NAME_SIZE) + 1;
310 311 312 313 314 315
	if (!size) {
		retval = -EINVAL;
		goto exit;
	}

	kfree(dev->name);
316 317
	dev->name = name = kmalloc(size, GFP_KERNEL);
	if (!name) {
L
Linus Torvalds 已提交
318 319 320
		retval = -ENOMEM;
		goto exit;
	}
321
	strlcpy(name, user_dev->name, size);
L
Linus Torvalds 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336

	dev->id.bustype	= user_dev->id.bustype;
	dev->id.vendor	= user_dev->id.vendor;
	dev->id.product	= user_dev->id.product;
	dev->id.version	= user_dev->id.version;

	size = sizeof(int) * (ABS_MAX + 1);
	memcpy(dev->absmax, user_dev->absmax, size);
	memcpy(dev->absmin, user_dev->absmin, size);
	memcpy(dev->absfuzz, user_dev->absfuzz, size);
	memcpy(dev->absflat, user_dev->absflat, size);

	/* check if absmin/absmax/absfuzz/absflat are filled as
	 * told in Documentation/input/input-programming.txt */
	if (test_bit(EV_ABS, dev->evbit)) {
337 338 339
		retval = uinput_validate_absbits(dev);
		if (retval < 0)
			goto exit;
L
Linus Torvalds 已提交
340 341
	}

342 343 344 345
	udev->state = UIST_SETUP_COMPLETE;
	retval = count;

 exit:
L
Linus Torvalds 已提交
346 347 348 349
	kfree(user_dev);
	return retval;
}

350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
static inline ssize_t uinput_inject_event(struct uinput_device *udev, const char __user *buffer, size_t count)
{
	struct input_event ev;

	if (count != sizeof(struct input_event))
		return -EINVAL;

	if (copy_from_user(&ev, buffer, sizeof(struct input_event)))
		return -EFAULT;

	input_event(udev->dev, ev.type, ev.code, ev.value);

	return sizeof(struct input_event);
}

L
Linus Torvalds 已提交
365 366 367
static ssize_t uinput_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
{
	struct uinput_device *udev = file->private_data;
368
	int retval;
L
Linus Torvalds 已提交
369

370
	retval = mutex_lock_interruptible(&udev->mutex);
371 372 373 374 375 376
	if (retval)
		return retval;

	retval = udev->state == UIST_CREATED ?
			uinput_inject_event(udev, buffer, count) :
			uinput_setup_device(udev, buffer, count);
L
Linus Torvalds 已提交
377

378
	mutex_unlock(&udev->mutex);
L
Linus Torvalds 已提交
379

380
	return retval;
L
Linus Torvalds 已提交
381 382 383 384 385 386 387
}

static ssize_t uinput_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
{
	struct uinput_device *udev = file->private_data;
	int retval = 0;

388
	if (udev->state != UIST_CREATED)
L
Linus Torvalds 已提交
389 390
		return -ENODEV;

391
	if (udev->head == udev->tail && (file->f_flags & O_NONBLOCK))
L
Linus Torvalds 已提交
392 393 394
		return -EAGAIN;

	retval = wait_event_interruptible(udev->waitq,
395
			udev->head != udev->tail || udev->state != UIST_CREATED);
L
Linus Torvalds 已提交
396 397 398
	if (retval)
		return retval;

399
	retval = mutex_lock_interruptible(&udev->mutex);
400 401 402 403 404 405 406
	if (retval)
		return retval;

	if (udev->state != UIST_CREATED) {
		retval = -ENODEV;
		goto out;
	}
L
Linus Torvalds 已提交
407

408 409 410 411 412
	while (udev->head != udev->tail && retval + sizeof(struct input_event) <= count) {
		if (copy_to_user(buffer + retval, &udev->buff[udev->tail], sizeof(struct input_event))) {
			retval = -EFAULT;
			goto out;
		}
L
Linus Torvalds 已提交
413 414 415 416
		udev->tail = (udev->tail + 1) % UINPUT_BUFFER_SIZE;
		retval += sizeof(struct input_event);
	}

417
 out:
418
	mutex_unlock(&udev->mutex);
419

L
Linus Torvalds 已提交
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
	return retval;
}

static unsigned int uinput_poll(struct file *file, poll_table *wait)
{
	struct uinput_device *udev = file->private_data;

	poll_wait(file, &udev->waitq, wait);

	if (udev->head != udev->tail)
		return POLLIN | POLLRDNORM;

	return 0;
}

435
static int uinput_release(struct inode *inode, struct file *file)
L
Linus Torvalds 已提交
436
{
437
	struct uinput_device *udev = file->private_data;
L
Linus Torvalds 已提交
438

439
	uinput_destroy_device(udev);
L
Linus Torvalds 已提交
440 441 442 443 444
	kfree(udev);

	return 0;
}

445 446 447 448 449 450 451 452 453 454 455 456
#define uinput_set_bit(_arg, _bit, _max)		\
({							\
	int __ret = 0;					\
	if (udev->state == UIST_CREATED)		\
		__ret =  -EINVAL;			\
	else if ((_arg) > (_max))			\
		__ret = -EINVAL;			\
	else set_bit((_arg), udev->dev->_bit);		\
	__ret;						\
})

static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
457
{
458
	int			retval;
L
Linus Torvalds 已提交
459 460 461 462 463 464
	struct uinput_device	*udev;
	void __user             *p = (void __user *)arg;
	struct uinput_ff_upload ff_up;
	struct uinput_ff_erase  ff_erase;
	struct uinput_request   *req;
	int                     length;
465
	char			*phys;
L
Linus Torvalds 已提交
466 467 468

	udev = file->private_data;

469
	retval = mutex_lock_interruptible(&udev->mutex);
470 471 472 473 474 475 476
	if (retval)
		return retval;

	if (!udev->dev) {
		retval = uinput_allocate_device(udev);
		if (retval)
			goto out;
L
Linus Torvalds 已提交
477 478 479 480 481 482 483 484
	}

	switch (cmd) {
		case UI_DEV_CREATE:
			retval = uinput_create_device(udev);
			break;

		case UI_DEV_DESTROY:
485
			uinput_destroy_device(udev);
L
Linus Torvalds 已提交
486 487 488
			break;

		case UI_SET_EVBIT:
489
			retval = uinput_set_bit(arg, evbit, EV_MAX);
L
Linus Torvalds 已提交
490 491 492
			break;

		case UI_SET_KEYBIT:
493
			retval = uinput_set_bit(arg, keybit, KEY_MAX);
L
Linus Torvalds 已提交
494 495 496
			break;

		case UI_SET_RELBIT:
497
			retval = uinput_set_bit(arg, relbit, REL_MAX);
L
Linus Torvalds 已提交
498 499 500
			break;

		case UI_SET_ABSBIT:
501
			retval = uinput_set_bit(arg, absbit, ABS_MAX);
L
Linus Torvalds 已提交
502 503 504
			break;

		case UI_SET_MSCBIT:
505
			retval = uinput_set_bit(arg, mscbit, MSC_MAX);
L
Linus Torvalds 已提交
506 507 508
			break;

		case UI_SET_LEDBIT:
509
			retval = uinput_set_bit(arg, ledbit, LED_MAX);
L
Linus Torvalds 已提交
510 511 512
			break;

		case UI_SET_SNDBIT:
513
			retval = uinput_set_bit(arg, sndbit, SND_MAX);
L
Linus Torvalds 已提交
514 515 516
			break;

		case UI_SET_FFBIT:
517
			retval = uinput_set_bit(arg, ffbit, FF_MAX);
L
Linus Torvalds 已提交
518 519
			break;

520 521 522 523
		case UI_SET_SWBIT:
			retval = uinput_set_bit(arg, swbit, SW_MAX);
			break;

L
Linus Torvalds 已提交
524
		case UI_SET_PHYS:
525 526 527 528
			if (udev->state == UIST_CREATED) {
				retval = -EINVAL;
				goto out;
			}
L
Linus Torvalds 已提交
529 530 531 532 533
			length = strnlen_user(p, 1024);
			if (length <= 0) {
				retval = -EFAULT;
				break;
			}
534 535 536
			kfree(udev->dev->phys);
			udev->dev->phys = phys = kmalloc(length, GFP_KERNEL);
			if (!phys) {
L
Linus Torvalds 已提交
537 538 539
				retval = -ENOMEM;
				break;
			}
540
			if (copy_from_user(phys, p, length)) {
L
Linus Torvalds 已提交
541
				udev->dev->phys = NULL;
542 543
				kfree(phys);
				retval = -EFAULT;
L
Linus Torvalds 已提交
544 545
				break;
			}
546
			phys[length - 1] = '\0';
L
Linus Torvalds 已提交
547 548 549 550 551 552 553 554
			break;

		case UI_BEGIN_FF_UPLOAD:
			if (copy_from_user(&ff_up, p, sizeof(ff_up))) {
				retval = -EFAULT;
				break;
			}
			req = uinput_request_find(udev, ff_up.request_id);
555
			if (!(req && req->code == UI_FF_UPLOAD && req->u.upload.effect)) {
L
Linus Torvalds 已提交
556 557 558 559
				retval = -EINVAL;
				break;
			}
			ff_up.retval = 0;
560 561 562 563 564 565
			memcpy(&ff_up.effect, req->u.upload.effect, sizeof(struct ff_effect));
			if (req->u.upload.old)
				memcpy(&ff_up.old, req->u.upload.old, sizeof(struct ff_effect));
			else
				memset(&ff_up.old, 0, sizeof(struct ff_effect));

L
Linus Torvalds 已提交
566 567 568 569 570 571 572 573 574 575 576 577
			if (copy_to_user(p, &ff_up, sizeof(ff_up))) {
				retval = -EFAULT;
				break;
			}
			break;

		case UI_BEGIN_FF_ERASE:
			if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
				retval = -EFAULT;
				break;
			}
			req = uinput_request_find(udev, ff_erase.request_id);
578
			if (!(req && req->code == UI_FF_ERASE)) {
L
Linus Torvalds 已提交
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
				retval = -EINVAL;
				break;
			}
			ff_erase.retval = 0;
			ff_erase.effect_id = req->u.effect_id;
			if (copy_to_user(p, &ff_erase, sizeof(ff_erase))) {
				retval = -EFAULT;
				break;
			}
			break;

		case UI_END_FF_UPLOAD:
			if (copy_from_user(&ff_up, p, sizeof(ff_up))) {
				retval = -EFAULT;
				break;
			}
			req = uinput_request_find(udev, ff_up.request_id);
596
			if (!(req && req->code == UI_FF_UPLOAD && req->u.upload.effect)) {
L
Linus Torvalds 已提交
597 598 599 600
				retval = -EINVAL;
				break;
			}
			req->retval = ff_up.retval;
601
			uinput_request_done(udev, req);
L
Linus Torvalds 已提交
602 603 604 605 606 607 608 609
			break;

		case UI_END_FF_ERASE:
			if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
				retval = -EFAULT;
				break;
			}
			req = uinput_request_find(udev, ff_erase.request_id);
610
			if (!(req && req->code == UI_FF_ERASE)) {
L
Linus Torvalds 已提交
611 612 613 614
				retval = -EINVAL;
				break;
			}
			req->retval = ff_erase.retval;
615
			uinput_request_done(udev, req);
L
Linus Torvalds 已提交
616 617 618 619 620
			break;

		default:
			retval = -EINVAL;
	}
621 622

 out:
623
	mutex_unlock(&udev->mutex);
L
Linus Torvalds 已提交
624 625 626
	return retval;
}

627
static const struct file_operations uinput_fops = {
628 629 630 631 632 633 634
	.owner		= THIS_MODULE,
	.open		= uinput_open,
	.release	= uinput_release,
	.read		= uinput_read,
	.write		= uinput_write,
	.poll		= uinput_poll,
	.unlocked_ioctl	= uinput_ioctl,
L
Linus Torvalds 已提交
635 636 637
};

static struct miscdevice uinput_misc = {
638 639 640
	.fops		= &uinput_fops,
	.minor		= UINPUT_MINOR,
	.name		= UINPUT_NAME,
L
Linus Torvalds 已提交
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
};

static int __init uinput_init(void)
{
	return misc_register(&uinput_misc);
}

static void __exit uinput_exit(void)
{
	misc_deregister(&uinput_misc);
}

MODULE_AUTHOR("Aristeu Sergio Rozanski Filho");
MODULE_DESCRIPTION("User level driver support for input subsystem");
MODULE_LICENSE("GPL");
656
MODULE_VERSION("0.3");
L
Linus Torvalds 已提交
657 658 659 660

module_init(uinput_init);
module_exit(uinput_exit);