随笔分类 - 嵌入式之Linux设备驱动程序开发
摘要:hello.c//////////////////////////////////////////////////////////////////////////#include <linux/init.h>#include <linux/module.h>MODULE_LICENSE ("Dual BSD/GPL");static int hello_init (void){ printk (KERN_ALERT "hello to module"); return 0;}static void
阅读全文