b497b6a34e
MODULE_SUPPORTED_DEVICE is remove from upstream since March 17, 2021. See linux.git commit 6417f03 Reported by Niklas Lantau <niklaslantau@gmail.com> Close #61
25 lines
533 B
C
25 lines
533 B
C
/*
|
|
* hello-4.c - Demonstrates module documentation.
|
|
*/
|
|
#include <linux/init.h> /* Needed for the macros */
|
|
#include <linux/kernel.h> /* Needed for KERN_INFO */
|
|
#include <linux/module.h> /* Needed by all modules */
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("LKMPG");
|
|
MODULE_DESCRIPTION("A sample driver");
|
|
|
|
static int __init init_hello_4(void)
|
|
{
|
|
pr_info("Hello, world 4\n");
|
|
return 0;
|
|
}
|
|
|
|
static void __exit cleanup_hello_4(void)
|
|
{
|
|
pr_info("Goodbye, world 4\n");
|
|
}
|
|
|
|
module_init(init_hello_4);
|
|
module_exit(cleanup_hello_4);
|