Subversion Repositories f9daq

Rev

Rev 11 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>

MODULE_INFO(vermagic, VERMAGIC_STRING);

struct module __this_module
__attribute__((section(".gnu.linkonce.this_module"))) = {
        .name = KBUILD_MODNAME,
        .init = init_module,
#ifdef CONFIG_MODULE_UNLOAD
        .exit = cleanup_module,
#endif
        .arch = MODULE_ARCH_INIT,
};

static const struct modversion_info ____versions[]
__used
__attribute__((section("__versions"))) = {
        { 0xee584c90, "module_layout" },
        { 0x6bc3fbc0, "__unregister_chrdev" },
        { 0x1fedf0f4, "__request_region" },
        { 0x440a4045, "kmalloc_caches" },
        { 0x69a358a6, "iomem_resource" },
        { 0xc8b57c27, "autoremove_wake_function" },
        { 0x27ca2b04, "pci_disable_device" },
        { 0x88ef4b8, "remove_proc_entry" },
        { 0xc8f68b16, "__register_chrdev" },
        { 0x6339a8bc, "mutex_unlock" },
        { 0x91715312, "sprintf" },
        { 0x68dfc59f, "__init_waitqueue_head" },
        { 0x215f9a25, "current_task" },
        { 0xc5c74531, "__mutex_init" },
        { 0x50eedeb8, "printk" },
        { 0xb4390f9a, "mcount" },
        { 0xfd03d00a, "pci_bus_write_config_dword" },
        { 0xcf510c4a, "mutex_lock" },
        { 0x2072ee9b, "request_threaded_irq" },
        { 0xa8a6f639, "__check_region" },
        { 0x42c8de35, "ioremap_nocache" },
        { 0x4d66a1f8, "pci_bus_read_config_word" },
        { 0x580199b1, "pci_bus_read_config_dword" },
        { 0x4292364c, "schedule" },
        { 0xf68c082c, "create_proc_entry" },
        { 0x7c61340c, "__release_region" },
        { 0x7807eace, "kmem_cache_alloc_trace" },
        { 0xe45f60d8, "__wake_up" },
        { 0x37a0cba, "kfree" },
        { 0x622fa02a, "prepare_to_wait" },
        { 0xedc03953, "iounmap" },
        { 0x1fb6d7da, "pci_get_device" },
        { 0x75bb675a, "finish_wait" },
        { 0xedeaaff1, "pci_enable_device" },
        { 0xf20dabd8, "free_irq" },
};

static const char __module_depends[]
__used
__attribute__((section(".modinfo"))) =
"depends=";


MODULE_INFO(srcversion, "BC454FCFCA2F039491927C2");