mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
pr_info everywhere
This commit is contained in:
@@ -17,11 +17,11 @@ MODULE_LICENSE("GPL");
|
||||
|
||||
int init_module(void)
|
||||
{
|
||||
printk(KERN_INFO "init_module\n");
|
||||
pr_info("init_module\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
void cleanup_module(void)
|
||||
{
|
||||
printk(KERN_INFO "cleanup_module\n");
|
||||
pr_info("cleanup_module\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user