]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drivers/video/backlight/generic_bl.c: use dev_info() instead of pr_info()
authorJingoo Han <jg1.han@samsung.com>
Mon, 29 Apr 2013 23:17:33 +0000 (16:17 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 30 Apr 2013 01:28:15 +0000 (18:28 -0700)
dev_info() is preferred to pr_info().

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/video/backlight/generic_bl.c

index 0ae155be9c89ad43685e2303bce941c6954273e1..19e393b41438f21faf8fe91995a2846e0597ba5b 100644 (file)
@@ -9,8 +9,6 @@
  *
  */
 
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/init.h>
@@ -108,7 +106,7 @@ static int genericbl_probe(struct platform_device *pdev)
 
        generic_backlight_device = bd;
 
-       pr_info("Generic Backlight Driver Initialized.\n");
+       dev_info(&pdev->dev, "Generic Backlight Driver Initialized.\n");
        return 0;
 }
 
@@ -122,7 +120,7 @@ static int genericbl_remove(struct platform_device *pdev)
 
        backlight_device_unregister(bd);
 
-       pr_info("Generic Backlight Driver Unloaded\n");
+       dev_info(&pdev->dev, "Generic Backlight Driver Unloaded\n");
        return 0;
 }