mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
pr_debug: fix wrong insmod assertions, document mess of printk(KERN_DEBUG
This commit is contained in:
@@ -3,13 +3,13 @@
|
||||
|
||||
static int myinit(void)
|
||||
{
|
||||
pr_alert("printk alert\n");
|
||||
pr_crit("printk crit\n");
|
||||
pr_err("printk err\n");
|
||||
pr_warning("printk warning\n");
|
||||
pr_notice("printk notice\n");
|
||||
pr_info("printk info\n");
|
||||
pr_debug("printk debug\n");
|
||||
pr_alert("pr_alert\n");
|
||||
pr_crit("pr_crit\n");
|
||||
pr_err("pr_err");
|
||||
pr_warning("pr_warning\n");
|
||||
pr_notice("pr_notice\n");
|
||||
pr_info("pr_info\n");
|
||||
pr_debug("pr_debug\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user