📄 sja1000.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 .arch = MODULE_ARCH_INIT,};static const struct modversion_info ____versions[]__used__attribute__((section("__versions"))) = { { 0x27bfd921, "struct_module" }, { 0x60400b7f, "pv_lock_ops" }, { 0xa5423cc4, "param_get_int" }, { 0xeae3dfd6, "__const_udelay" }, { 0xcb32da10, "param_set_int" }, { 0xca8ecb9, "alloc_candev" }, { 0x7d11c268, "jiffies" }, { 0xa22a4bd0, "can_bus_off" }, { 0x5ab2efd, "netif_rx" }, { 0xaf7806bd, "dev_alloc_skb" }, { 0xb72397d5, "printk" }, { 0xecde1418, "_spin_lock_irq" }, { 0x1c70c516, "free_netdev" }, { 0xe29a5dcb, "register_netdev" }, { 0xb4390f9a, "mcount" }, { 0xd7fe47df, "free_candev" }, { 0xed633abc, "pv_irq_ops" }, { 0x2cf190e3, "request_irq" }, { 0x985331fc, "can_set_bittiming" }, { 0x5ab70adb, "dev_driver_string" }, { 0x21f9c26, "can_close_cleanup" }, { 0x80ef0a97, "unregister_netdev" }, { 0x26be652, "can_get_echo_skb" }, { 0x337bd42f, "__netif_schedule" }, { 0x63484763, "can_put_echo_skb" }, { 0x4e26db35, "skb_put" }, { 0xf20dabd8, "free_irq" },};static const char __module_depends[]__used__attribute__((section(".modinfo"))) ="depends=can-dev";MODULE_INFO(srcversion, "B13CABCC4E4A6AED40F6627");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -