diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2008-11-16 02:33:46 +0100 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2008-11-16 02:33:46 +0100 |
| commit | 50f5008f93d62d7539429a878ff81661027e0e2e (patch) | |
| tree | a28a414bece63f5a11ae242af85d3e4ab340b153 /usr/src/dkms_source_tree/hid.mod.c | |
| parent | 34a56add304e0b5b402ca890d93bc0b9e9da0f9a (diff) | |
Upgrade to intrepid 2.6.27-8.17
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'usr/src/dkms_source_tree/hid.mod.c')
| -rw-r--r-- | usr/src/dkms_source_tree/hid.mod.c | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/usr/src/dkms_source_tree/hid.mod.c b/usr/src/dkms_source_tree/hid.mod.c new file mode 100644 index 0000000..03190d8 --- /dev/null +++ b/usr/src/dkms_source_tree/hid.mod.c | |||
| @@ -0,0 +1,76 @@ | |||
| 1 | #include <linux/module.h> | ||
| 2 | #include <linux/vermagic.h> | ||
| 3 | #include <linux/compiler.h> | ||
| 4 | |||
| 5 | MODULE_INFO(vermagic, VERMAGIC_STRING); | ||
| 6 | |||
| 7 | struct module __this_module | ||
| 8 | __attribute__((section(".gnu.linkonce.this_module"))) = { | ||
| 9 | .name = KBUILD_MODNAME, | ||
| 10 | .init = init_module, | ||
| 11 | #ifdef CONFIG_MODULE_UNLOAD | ||
| 12 | .exit = cleanup_module, | ||
| 13 | #endif | ||
| 14 | .arch = MODULE_ARCH_INIT, | ||
| 15 | }; | ||
| 16 | |||
| 17 | static const struct modversion_info ____versions[] | ||
| 18 | __used | ||
| 19 | __attribute__((section("__versions"))) = { | ||
| 20 | { 0xa257c5a3, "struct_module" }, | ||
| 21 | { 0x6b9a06f4, "cdev_del" }, | ||
| 22 | { 0x24b84de1, "per_cpu__current_task" }, | ||
| 23 | { 0xafcac6fe, "kmalloc_caches" }, | ||
| 24 | { 0x12da5bb2, "__kmalloc" }, | ||
| 25 | { 0x73ffd178, "cdev_init" }, | ||
| 26 | { 0x608c2831, "warn_on_slowpath" }, | ||
| 27 | { 0xd6ee688f, "vmalloc" }, | ||
| 28 | { 0x60400b7f, "pv_lock_ops" }, | ||
| 29 | { 0xa5423cc4, "param_get_int" }, | ||
| 30 | { 0x71356fba, "remove_wait_queue" }, | ||
| 31 | { 0x973873ab, "_spin_lock" }, | ||
| 32 | { 0x25e6a7c5, "device_destroy" }, | ||
| 33 | { 0x6729d3df, "__get_user_4" }, | ||
| 34 | { 0xe2fae716, "kmemdup" }, | ||
| 35 | { 0x577cc638, "mutex_unlock" }, | ||
| 36 | { 0x7485e15e, "unregister_chrdev_region" }, | ||
| 37 | { 0x999e8297, "vfree" }, | ||
| 38 | { 0xcb32da10, "param_set_int" }, | ||
| 39 | { 0x805a8fd8, "input_event" }, | ||
| 40 | { 0xffd5a395, "default_wake_function" }, | ||
| 41 | { 0x67e71b77, "__mutex_init" }, | ||
| 42 | { 0xb72397d5, "printk" }, | ||
| 43 | { 0x3656bf5a, "lock_kernel" }, | ||
| 44 | { 0x479c3c86, "find_next_zero_bit" }, | ||
| 45 | { 0x2f287f0d, "copy_to_user" }, | ||
| 46 | { 0xb4390f9a, "mcount" }, | ||
| 47 | { 0x8aaf8654, "mutex_lock" }, | ||
| 48 | { 0x9eae490d, "device_create" }, | ||
| 49 | { 0x9b355194, "cdev_add" }, | ||
| 50 | { 0xb1f975aa, "unlock_kernel" }, | ||
| 51 | { 0xa36a1add, "kmem_cache_alloc" }, | ||
| 52 | { 0xb2fd5ceb, "__put_user_4" }, | ||
| 53 | { 0xbc9fe26a, "input_register_device" }, | ||
| 54 | { 0x4292364c, "schedule" }, | ||
| 55 | { 0x98578ea8, "input_free_device" }, | ||
| 56 | { 0x64cd5d16, "init_waitqueue_head" }, | ||
| 57 | { 0x642e54ac, "__wake_up" }, | ||
| 58 | { 0x650fb346, "add_wait_queue" }, | ||
| 59 | { 0x37a0cba, "kfree" }, | ||
| 60 | { 0xab1d8e96, "input_unregister_device" }, | ||
| 61 | { 0x9ef749e2, "unregister_chrdev" }, | ||
| 62 | { 0xba9b3a6f, "class_destroy" }, | ||
| 63 | { 0xb0412d, "kill_fasync" }, | ||
| 64 | { 0x3ea9f1de, "__class_create" }, | ||
| 65 | { 0xd6c963c, "copy_from_user" }, | ||
| 66 | { 0x29537c9e, "alloc_chrdev_region" }, | ||
| 67 | { 0xa51d5c08, "input_allocate_device" }, | ||
| 68 | }; | ||
| 69 | |||
| 70 | static const char __module_depends[] | ||
| 71 | __used | ||
| 72 | __attribute__((section(".modinfo"))) = | ||
| 73 | "depends="; | ||
| 74 | |||
| 75 | |||
| 76 | MODULE_INFO(srcversion, "B7CBC60F230650415B31999"); | ||
