Subversion Repositories f9daq

Rev

Rev 335 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. #include <linux/module.h>
  2. #define INCLUDE_VERMAGIC
  3. #include <linux/build-salt.h>
  4. #include <linux/vermagic.h>
  5. #include <linux/compiler.h>
  6.  
  7. BUILD_SALT;
  8.  
  9. MODULE_INFO(vermagic, VERMAGIC_STRING);
  10. MODULE_INFO(name, KBUILD_MODNAME);
  11.  
  12. __visible struct module __this_module
  13. __section(.gnu.linkonce.this_module) = {
  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.  
  22. #ifdef CONFIG_RETPOLINE
  23. MODULE_INFO(retpoline, "Y");
  24. #endif
  25.  
  26. static const struct modversion_info ____versions[]
  27. __used __section(__versions) = {
  28.         { 0xa879d70c, "module_layout" },
  29.         { 0x4b5317f6, "kmalloc_caches" },
  30.         { 0xeb233a45, "__kmalloc" },
  31.         { 0x9aabb05, "usb_deregister_dev" },
  32.         { 0x409bcb62, "mutex_unlock" },
  33.         { 0x167e7f9d, "__get_user_1" },
  34.         { 0xaf313a6, "usb_deregister" },
  35.         { 0x977f511b, "__mutex_init" },
  36.         { 0xc5850110, "printk" },
  37.         { 0xa00bc4da, "usb_register_dev" },
  38.         { 0xea8be50b, "usb_control_msg" },
  39.         { 0xc3aaf0a9, "__put_user_1" },
  40.         { 0x2ab7989d, "mutex_lock" },
  41.         { 0x6e917fc3, "usb_get_dev" },
  42.         { 0x296695f, "refcount_warn_saturate" },
  43.         { 0xc959d152, "__stack_chk_fail" },
  44.         { 0x7da9ed02, "usb_put_dev" },
  45.         { 0xd54bf84, "usb_find_interface" },
  46.         { 0xbdfb6dbb, "__fentry__" },
  47.         { 0x9b67a295, "kmem_cache_alloc_trace" },
  48.         { 0x37a0cba, "kfree" },
  49.         { 0xcebadccc, "usb_register_driver" },
  50. };
  51.  
  52. MODULE_INFO(depends, "");
  53.  
  54.  
  55. MODULE_INFO(srcversion, "FB56B778E0FD08195B1DCB9");
  56.