📄 gpio.mod.c
字号:
#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"))) = { { 0xda01d437, "struct_module" }, { 0x1a1a4f09, "__request_region" }, { 0x98c09509, "remove_proc_entry" }, { 0x1d26aa98, "sprintf" }, { 0x865ebccd, "ioport_resource" }, { 0x1b7d4074, "printk" }, { 0x6e12ea6f, "pci_find_device" }, { 0x2f287f0d, "copy_to_user" }, { 0x625acc81, "__down_failed_interruptible" }, { 0x9eac042a, "__ioremap" }, { 0x986c1c3b, "register_chrdev" }, { 0x8aced1a, "create_proc_entry" }, { 0xd49501d4, "__release_region" }, { 0xedc03953, "iounmap" }, { 0xc192d491, "unregister_chrdev" }, { 0x60a4461c, "__up_wakeup" }, { 0xd6c963c, "copy_from_user" },};static const char __module_depends[]__attribute_used____attribute__((section(".modinfo"))) ="depends=";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -