Signed-off-by: Rahul Bedarkar <rahulbedarka...@gmail.com> --- drivers/char/misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/char/misc.c b/drivers/char/misc.c index 75b6de9..a6b96b1 100644 --- a/drivers/char/misc.c +++ b/drivers/char/misc.c @@ -280,12 +280,12 @@ static int __init misc_init(void) err = -EIO; if (register_chrdev(MISC_MAJOR,"misc",&misc_fops)) - goto fail_printk; + goto fail_pr_err; misc_class->devnode = misc_devnode; return 0; -fail_printk: - printk("unable to get major %d for misc devices\n", MISC_MAJOR); +fail_pr_err: + pr_err("unable to get major %d for misc devices\n", MISC_MAJOR); class_destroy(misc_class); fail_remove: remove_proc_entry("misc", NULL); -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/