Skip to content

Commit

Permalink
drivers/video/backlight/generic_bl.c: use dev_info() instead of pr_in…
Browse files Browse the repository at this point in the history
…fo()

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>
  • Loading branch information
Jingoo Han authored and Linus Torvalds committed Apr 30, 2013
1 parent 8e1274a commit 8ab5aa6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/video/backlight/generic_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
*
*/

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
Expand Down Expand Up @@ -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;
}

Expand All @@ -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;
}

Expand Down

0 comments on commit 8ab5aa6

Please sign in to comment.