📄 pmacisa.mod.c
字号:
#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};static const struct modversion_info ____versions[]__attribute_used____attribute__((section("__versions"))) = { { 0x308c2bc4, "struct_module" }, { 0x89b301d4, "param_get_int" }, { 0x98bd6f46, "param_set_int" }, { 0xf2a644fb, "copy_from_user" }, { 0x2da418b5, "copy_to_user" }, { 0x9eac042a, "__ioremap" }, { 0x4c3af445, "__request_region" }, { 0xda73a1d0, "__check_region" }, { 0xffed8d7a, "create_proc_entry" }, { 0x681c575a, "proc_mkdir" }, { 0xca29c6dc, "proc_root_driver" }, { 0x587062de, "register_chrdev" }, { 0x1e6d26a8, "strstr" }, { 0x1d26aa98, "sprintf" }, { 0x9e7d6bd0, "__udelay" }, { 0x1b7d4074, "printk" }, { 0xc192d491, "unregister_chrdev" }, { 0xf8b13024, "remove_proc_entry" }, { 0xedc03953, "iounmap" }, { 0xdc3eaf70, "iomem_resource" }, { 0x8bb33e7d, "__release_region" }, { 0x9070b3f2, "ioport_resource" },};static const char __module_depends[]__attribute_used____attribute__((section(".modinfo"))) ="depends=";MODULE_INFO(srcversion, "CD9D69CF83CF6766EC49B9E");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -