mirror of
https://github.com/sysprog21/lkmpg.git
synced 2024-11-22 09:52:45 +08:00
15 lines
307 B
C
15 lines
307 B
C
|
/*
|
||
|
* start.c - Illustration of multi filed modules
|
||
|
*/
|
||
|
|
||
|
#include <linux/kernel.h> /* We're doing kernel work */
|
||
|
#include <linux/module.h> /* Specifically, a module */
|
||
|
|
||
|
int init_module(void)
|
||
|
{
|
||
|
pr_info("Hello, world - this is the kernel speaking\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
MODULE_LICENSE("GPL");
|