Rev 44 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line | 
|---|---|---|---|
| 9 | f9daq | 1 | #include <linux/module.h> | 
        
| 362 | f9daq | 2 | #define INCLUDE_VERMAGIC | 
        
| 3 | #include <linux/build-salt.h> | 
        ||
| 9 | f9daq | 4 | #include <linux/vermagic.h> | 
        
| 5 | #include <linux/compiler.h> | 
        ||
| 6 | |||
| 362 | f9daq | 7 | BUILD_SALT; | 
        
| 8 | |||
| 9 | f9daq | 9 | MODULE_INFO(vermagic, VERMAGIC_STRING);  | 
        
| 362 | f9daq | 10 | MODULE_INFO(name, KBUILD_MODNAME);  | 
        
| 9 | f9daq | 11 | |
| 43 | f9daq | 12 | __visible struct module __this_module | 
        
| 362 | f9daq | 13 | __section(".gnu.linkonce.this_module") = {  | 
        
| 9 | f9daq | 14 | .name = KBUILD_MODNAME,  | 
        
| 15 | .init = init_module,  | 
        ||
| 16 | #ifdef CONFIG_MODULE_UNLOAD | 
        ||
| 17 | .exit = cleanup_module,  | 
        ||
| 18 | #endif | 
        ||
| 19 | .arch = MODULE_ARCH_INIT,  | 
        ||
| 20 | };  | 
        ||
| 21 | |||
| 362 | f9daq | 22 | #ifdef CONFIG_RETPOLINE | 
        
| 23 | MODULE_INFO(retpoline, "Y");  | 
        ||
| 24 | #endif | 
        ||
| 25 | |||
| 9 | f9daq | 26 | static const struct modversion_info ____versions[]  | 
        
| 362 | f9daq | 27 | __used __section("__versions") = {  | 
        
| 28 | { 0x19fdd0c3, "module_layout" },  | 
        ||
| 29 | { 0x6bc3fbc0, "__unregister_chrdev" },  | 
        ||
| 30 | { 0x85bd1608, "__request_region" },  | 
        ||
| 31 | { 0x5f3af44c, "kmalloc_caches" },  | 
        ||
| 32 | { 0x6049f091, "pci_write_config_dword" },  | 
        ||
| 33 | { 0x77358855, "iomem_resource" },  | 
        ||
| 34 | { 0x5367b4b4, "boot_cpu_data" },  | 
        ||
| 35 | { 0x28cb89c6, "pci_disable_device" },  | 
        ||
| 36 | { 0x8d6aff89, "__put_user_nocheck_4" },  | 
        ||
| 37 | { 0xe8d4e6f7, "remove_proc_entry" },  | 
        ||
| 38 | { 0xd7a7096b, "__register_chrdev" },  | 
        ||
| 39 | { 0x3a099605, "__get_user_nocheck_4" },  | 
        ||
| 40 | { 0x409bcb62, "mutex_unlock" },  | 
        ||
| 41 | { 0x3c3ff9fd, "sprintf" },  | 
        ||
| 42 | { 0xd9a5ea54, "__init_waitqueue_head" },  | 
        ||
| 43 | { 0x977f511b, "__mutex_init" },  | 
        ||
| 44 | { 0xc5850110, "printk" },  | 
        ||
| 45 | { 0xde80cd09, "ioremap" },  | 
        ||
| 46 | { 0x65df35ca, "__put_user_nocheck_2" },  | 
        ||
| 47 | { 0xa1c76e0a, "_cond_resched" },  | 
        ||
| 48 | { 0xbd30a84c, "pci_read_config_word" },  | 
        ||
| 49 | { 0x2ab7989d, "mutex_lock" },  | 
        ||
| 50 | { 0xd2bc5c46, "__get_user_nocheck_2" },  | 
        ||
| 51 | { 0x92d5838e, "request_threaded_irq" },  | 
        ||
| 52 | { 0x4b5e3a47, "__get_user_nocheck_1" },  | 
        ||
| 53 | { 0xfe487975, "init_wait_entry" },  | 
        ||
| 54 | { 0xfc3d53cb, "__put_user_nocheck_1" },  | 
        ||
| 55 | { 0x7cd8d75e, "page_offset_base" },  | 
        ||
| 56 | { 0xc959d152, "__stack_chk_fail" },  | 
        ||
| 57 | { 0x1000e51, "schedule" },  | 
        ||
| 58 | { 0x2ea2c95c, "__x86_indirect_thunk_rax" },  | 
        ||
| 59 | { 0xdcb54fb, "pci_read_config_dword" },  | 
        ||
| 60 | { 0xbdfb6dbb, "__fentry__" },  | 
        ||
| 61 | { 0x1035c7c2, "__release_region" },  | 
        ||
| 62 | { 0xd1ff3d1f, "kmem_cache_alloc_trace" },  | 
        ||
| 63 | { 0x3eeb2322, "__wake_up" },  | 
        ||
| 64 | { 0x8c26d495, "prepare_to_wait_event" },  | 
        ||
| 65 | { 0xececfcd9, "proc_create_data" },  | 
        ||
| 66 | { 0x37a0cba, "kfree" },  | 
        ||
| 67 | { 0xedc03953, "iounmap" },  | 
        ||
| 68 | { 0x5852c575, "pci_get_device" },  | 
        ||
| 69 | { 0x92540fbf, "finish_wait" },  | 
        ||
| 70 | { 0x807cd017, "pci_enable_device" },  | 
        ||
| 71 | { 0xc1514a3b, "free_irq" },  | 
        ||
| 9 | f9daq | 72 | };  | 
        
| 73 | |||
| 362 | f9daq | 74 | MODULE_INFO(depends, "");  | 
        
| 9 | f9daq | 75 | |
| 76 | |||
| 362 | f9daq | 77 | MODULE_INFO(srcversion, "C9945A49BE713AE1046C032");  |