Subversion Repositories f9daq

Rev

Rev 9 | Rev 43 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 f9daq 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
        { 0xee584c90, "module_layout" },
21
        { 0x6bc3fbc0, "__unregister_chrdev" },
22
        { 0x1fedf0f4, "__request_region" },
23
        { 0x440a4045, "kmalloc_caches" },
24
        { 0x69a358a6, "iomem_resource" },
25
        { 0xc8b57c27, "autoremove_wake_function" },
26
        { 0x27ca2b04, "pci_disable_device" },
27
        { 0x88ef4b8, "remove_proc_entry" },
28
        { 0xc8f68b16, "__register_chrdev" },
29
        { 0x6339a8bc, "mutex_unlock" },
30
        { 0x91715312, "sprintf" },
31
        { 0x68dfc59f, "__init_waitqueue_head" },
32
        { 0x215f9a25, "current_task" },
33
        { 0xc5c74531, "__mutex_init" },
34
        { 0x50eedeb8, "printk" },
35
        { 0xb4390f9a, "mcount" },
36
        { 0xfd03d00a, "pci_bus_write_config_dword" },
37
        { 0xcf510c4a, "mutex_lock" },
38
        { 0x2072ee9b, "request_threaded_irq" },
39
        { 0xa8a6f639, "__check_region" },
40
        { 0x42c8de35, "ioremap_nocache" },
41
        { 0x4d66a1f8, "pci_bus_read_config_word" },
42
        { 0x580199b1, "pci_bus_read_config_dword" },
43
        { 0x4292364c, "schedule" },
44
        { 0xf68c082c, "create_proc_entry" },
45
        { 0x7c61340c, "__release_region" },
46
        { 0x7807eace, "kmem_cache_alloc_trace" },
47
        { 0xe45f60d8, "__wake_up" },
48
        { 0x37a0cba, "kfree" },
49
        { 0x622fa02a, "prepare_to_wait" },
50
        { 0xedc03953, "iounmap" },
51
        { 0x1fb6d7da, "pci_get_device" },
52
        { 0x75bb675a, "finish_wait" },
53
        { 0xedeaaff1, "pci_enable_device" },
54
        { 0xf20dabd8, "free_irq" },
55
};
56
 
57
static const char __module_depends[]
58
__used
59
__attribute__((section(".modinfo"))) =
60
"depends=";
61
 
62
 
11 f9daq 63
MODULE_INFO(srcversion, "A7BD2186CAC138621574913");