目录
一、第一个驱动
二、第一个平台设备驱动
一、第一个驱动
kernel_hello.c
#include#include #include static int hello_init(void) { printk("hello world!n"); return 0; } static void hello_exit(void) { printk("see you next time!n"); return; } module_init(hello_init); module_exit(hello_exit); MODULE_LICENSE



