]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drivers/video/backlight/omap1_bl.c: use dev_info() instead of pr_info()
authorJingoo Han <jg1.han@samsung.com>
Mon, 29 Apr 2013 23:17:32 +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/omap1_bl.c

index 627110163067f85c3aa27c5aec66947e28789806..0aed176cd6a0c79617a5c1d303cb713c17c8d36c 100644 (file)
@@ -18,8 +18,6 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/init.h>
@@ -170,7 +168,7 @@ static int omapbl_probe(struct platform_device *pdev)
        dev->props.brightness = pdata->default_intensity;
        omapbl_update_status(dev);
 
-       pr_info("OMAP LCD backlight initialised\n");
+       dev_info(&pdev->dev, "OMAP LCD backlight initialised\n");
 
        return 0;
 }