📄 adc.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"))) = { { 0x73b8b38c, "struct_module" }, { 0xb794c614, "request_irq" }, { 0x7485e15e, "unregister_chrdev_region" }, { 0x348e525d, "cdev_del" }, { 0xb6c754ad, "class_destroy" }, { 0xd2e0002d, "class_device_destroy" }, { 0x7a84c779, "class_device_create" }, { 0x20b8efb8, "class_create" }, { 0x4c090186, "cdev_add" }, { 0x37bd060f, "cdev_init" }, { 0x3e63678a, "cdev_alloc" }, { 0x29537c9e, "alloc_chrdev_region" }, { 0xd8e484f0, "register_chrdev_region" }, { 0xdd132261, "printk" }, { 0xf20dabd8, "free_irq" }, { 0x1042cbb5, "__up_wakeup" }, { 0x6b2941b2, "__arch_copy_to_user" }, { 0xf9b28bac, "interruptible_sleep_on" }, { 0x829871bc, "__down_interruptible_failed" }, { 0xb6c70a7d, "__wake_up" },};static const char __module_depends[]__attribute_used____attribute__((section(".modinfo"))) ="depends=";MODULE_INFO(srcversion, "2E723D2AE926EA5F162307F");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -