usbdmc.mod.c
来自「一份介绍在S3C2410上液晶屏驱动程序的实现」· C语言 代码 · 共 56 行
C
56 行
#include <linux/module.h>#include <linux/vermagic.h>#include <linux/compiler.h>MODULE_INFO(vermagic, VERMAGIC_STRING);#undef unixstruct module __this_module__attribute__((section(".gnu.linkonce.this_module"))) = { .name = __stringify(KBUILD_MODNAME), .init = init_module,#ifdef CONFIG_MODULE_UNLOAD .exit = cleanup_module,#endif};static const struct modversion_info ____versions[]__attribute_used____attribute__((section("__versions"))) = { { 0x6d134bc3, "struct_module" }, { 0xdce0fcd1, "usb_deregister" }, { 0xf3154c63, "usb_register" }, { 0x37a0cba, "kfree" }, { 0x3989f7d9, "usb_deregister_dev" }, { 0x3f50d361, "usb_free_urb" }, { 0x81949e25, "usb_register_dev" }, { 0xbc5cd2f5, "usb_alloc_urb" }, { 0x82038555, "kmem_cache_alloc" }, { 0x6c3397fb, "malloc_sizes" }, { 0x464906f0, "usb_get_dev" }, { 0x9e0bc81c, "finish_wait" }, { 0x957a5f60, "prepare_to_wait" }, { 0x4292364c, "schedule" }, { 0x758634de, "autoremove_wake_function" }, { 0xc3aaf0a9, "__put_user_1" }, { 0xa03d6a57, "__get_user_4" }, { 0x2da418b5, "copy_to_user" }, { 0xf2a644fb, "copy_from_user" }, { 0x5a4896a8, "__put_user_2" }, { 0x8844121d, "usb_kill_urb" }, { 0xab821cad, "__wake_up" }, { 0xe3829c9f, "usb_submit_urb" }, { 0x5bf34f1e, "usb_control_msg" }, { 0x1b7d4074, "printk" }, { 0x1d26aa98, "sprintf" },};static const char __module_depends[]__attribute_used____attribute__((section(".modinfo"))) ="depends=";MODULE_ALIAS("usb:v0AFAp03E8d*dc*dsc*dp*ic*isc*ip*");MODULE_INFO(srcversion, "66196CC661F5C2014523C42");
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?