guowenxue
2024-12-23 b8e5f60912c77d52214c21e67fa91ec5f522c54c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright (C) 2024 LingYun IoT System Studio
 * Author: Guo Wenxue <guowenxue@gmail.com>
 *
 * Hello driver example in linux kernel.
 */
 
 
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
 
static __init int hello_init(void)
{
    printk(KERN_ALERT "Hello, Linux kernel module.\n");
    return 0;
}
 
static __exit void hello_exit(void)
{
    printk(KERN_ALERT "Goodbye, Linux kernel module.\n");
}
 
module_init(hello_init);
module_exit(hello_exit);
 
MODULE_LICENSE("Dual BSD/GPL");
MODULE_AUTHOR("GuoWenxue <guowenxue@gmail.com>");