nhmk/示例/0-hello/hello-1.c

22 lines
402 B
C
Raw Permalink Normal View History

2024-09-03 14:48:19 +08:00
/*
* hello-1.c -
*/
#include <linux/module.h> /* 内核模块必要的头 */
#include <linux/printk.h> /* 引入 pr_info() */
int init_module(void)
{
pr_info("你好,世界 1(报错返回).\n");
/* 非0返回意味着init_module失败; 无法加载模块 */
return 1;
}
void cleanup_module(void)
{
pr_info("再见,世界 1.\n");
}
MODULE_LICENSE("GPL");