摘要: 驱动模块编写和驱动模块函数入口本质 #include <linux/init.h> #include <linux/module.h> __init static int demo_init(void) { printk("hello world\n"); return 0; } __exit mo 阅读全文
posted @ 2023-11-01 21:12 _promise 阅读(30) 评论(0) 推荐(0) 编辑