mirror of
https://github.com/sysprog21/lkmpg.git
synced 2024-11-21 23:45:03 +08:00
10c7a9433a
This patch makes source listing shorter and more compact, that helps when browsing.
15 lines
295 B
C
15 lines
295 B
C
/*
|
|
* start.c - Illustration of multi filed modules
|
|
*/
|
|
|
|
#include <linux/kernel.h> /* We are 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");
|