blob: a8b3148e03a263bf4750be4ee803f6233ba304b9 [file] [log] [blame]
Henrik Rydberg8215d552012-04-23 12:07:07 +02001/*
2 * HID support for Linux
3 *
4 * Copyright (c) 1999 Andreas Gal
5 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
7 * Copyright (c) 2007-2008 Oliver Neukum
8 * Copyright (c) 2006-2012 Jiri Kosina
9 * Copyright (c) 2012 Henrik Rydberg
10 */
11
12/*
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the Free
15 * Software Foundation; either version 2 of the License, or (at your option)
16 * any later version.
17 */
18
19#include <linux/module.h>
20#include <linux/slab.h>
21#include <linux/kernel.h>
22#include <asm/unaligned.h>
23#include <asm/byteorder.h>
24
25#include <linux/hid.h>
26
27static const struct hid_device_id hid_table[] = {
28 { HID_DEVICE(HID_BUS_ANY, HID_GROUP_GENERIC, HID_ANY_ID, HID_ANY_ID) },
29 { }
30};
31MODULE_DEVICE_TABLE(hid, hid_table);
32
33static struct hid_driver hid_generic = {
34 .name = "hid-generic",
35 .id_table = hid_table,
36};
37
38static int __init hid_init(void)
39{
40 return hid_register_driver(&hid_generic);
41}
42
43static void __exit hid_exit(void)
44{
45 hid_unregister_driver(&hid_generic);
46}
47
48module_init(hid_init);
49module_exit(hid_exit);
50
51MODULE_AUTHOR("Henrik Rydberg");
52MODULE_DESCRIPTION("HID generic driver");
53MODULE_LICENSE("GPL");