Subversion Repositories f9daq

Rev

Rev 335 | 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"))) = {
        { 0x2adeec3c, "module_layout" },
        { 0xd9653bdb, "kmalloc_caches" },
        { 0x12da5bb2, "__kmalloc" },
        { 0xd5b037e1, "kref_put" },
        { 0xb4cd6cb9, "dev_set_drvdata" },
        { 0xdcafe17a, "usb_deregister_dev" },
        { 0xc2b09046, "mutex_unlock" },
        { 0x167e7f9d, "__get_user_1" },
        { 0x770d96cb, "usb_deregister" },
        { 0xbb4798d2, "__mutex_init" },
        { 0x50eedeb8, "printk" },
        { 0xa1c76e0a, "_cond_resched" },
        { 0xb4390f9a, "mcount" },
        { 0x49ea9ecf, "usb_register_dev" },
        { 0xdbcc5895, "usb_control_msg" },
        { 0xc3aaf0a9, "__put_user_1" },
        { 0xd6268628, "mutex_lock" },
        { 0x18558a72, "usb_get_dev" },
        { 0x742a088f, "usb_put_dev" },
        { 0xde9f6635, "usb_find_interface" },
        { 0x312d27d0, "kmem_cache_alloc_trace" },
        { 0x83800bfa, "kref_init" },
        { 0x37a0cba, "kfree" },
        { 0x9775cdc, "kref_get" },
        { 0xce55595f, "usb_register_driver" },
        { 0xe04ddc54, "dev_get_drvdata" },
};

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


MODULE_INFO(srcversion, "4184068420BB838A71FF475");