内核模块 module_param()传递参数
module_paramstatic char *book_name = "dissecting Linux Device Driver";static int num = 4000;module_param(num, int, S_IRUGO); module_param(book_name, charp, S_IR