AlcapDAQ  1
vmedrv.mod.c
Go to the documentation of this file.
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  { 0x92bb2bf4, "module_layout" },
21  { 0x35b6b772, "param_ops_charp" },
22  { 0x15692c87, "param_ops_int" },
23  { 0xbda0bf93, "cdev_del" },
24  { 0xf23bc51e, "pci_unregister_driver" },
25  { 0x7485e15e, "unregister_chrdev_region" },
26  { 0x5f8eb667, "cdev_add" },
27  { 0x83f7b822, "cdev_init" },
28  { 0xf432dd3d, "__init_waitqueue_head" },
29  { 0xd8e484f0, "register_chrdev_region" },
30  { 0x29537c9e, "alloc_chrdev_region" },
31  { 0x1dba4242, "__pci_register_driver" },
32  { 0x8c183cbe, "iowrite16" },
33  { 0xb8e7ce2c, "__put_user_8" },
34  { 0x6d334118, "__get_user_8" },
35  { 0x6729d3df, "__get_user_4" },
36  { 0x4f6b400b, "_copy_from_user" },
37  { 0xe484e35f, "ioread32" },
38  { 0x4f8b5ddb, "_copy_to_user" },
39  { 0xa1c76e0a, "_cond_resched" },
40  { 0xa9e16354, "x86_dma_fallback_dev" },
41  { 0xd4608d6f, "dma_ops" },
42  { 0x42a09cec, "try_module_get" },
43  { 0x2072ee9b, "request_threaded_irq" },
44  { 0x42c8de35, "ioremap_nocache" },
45  { 0x1fedf0f4, "__request_region" },
46  { 0xeacf74f0, "dma_set_mask" },
47  { 0x3e800e06, "pci_enable_device" },
48  { 0xcf21d241, "__wake_up" },
49  { 0x93ac7b0e, "send_sig" },
50  { 0xc5534d64, "ioread16" },
51  { 0x7966d735, "module_put" },
52  { 0x7c61340c, "__release_region" },
53  { 0xff7559e4, "ioport_resource" },
54  { 0xf20dabd8, "free_irq" },
55  { 0xedc03953, "iounmap" },
56  { 0x37a0cba, "kfree" },
57  { 0xe55dd87c, "kmem_cache_alloc_trace" },
58  { 0x561a2460, "kmalloc_caches" },
59  { 0x27e1a049, "printk" },
60  { 0xfa66f77c, "finish_wait" },
61  { 0xd62c833f, "schedule_timeout" },
62  { 0x5c8b5ce8, "prepare_to_wait" },
63  { 0x342ec138, "current_task" },
64  { 0xc8b57c27, "autoremove_wake_function" },
65  { 0xb22e84c3, "remap_pfn_range" },
66  { 0x436c2179, "iowrite32" },
67  { 0xf10de535, "ioread8" },
68  { 0x727c4f3, "iowrite8" },
69  { 0xbdfb6dbb, "__fentry__" },
70 };
71 
72 static const char __module_depends[]
73 __used
74 __attribute__((section(".modinfo"))) =
75 "depends=";
76 
77 
78 MODULE_INFO(srcversion, "8D6F8983B20B7AF793F83C5");