diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-02-21 16:45:30 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 17:22:29 -0800 |
commit | d75dcd3349a4e0916cec37e7b838c83c95b9fa95 (patch) | |
tree | ff907e24c07df919be04627a1775f7ada3411084 /drivers/rtc | |
parent | aa161902ecae9ef55f8ec2190d2be7877402374d (diff) | |
download | linux-3.10-d75dcd3349a4e0916cec37e7b838c83c95b9fa95.tar.gz linux-3.10-d75dcd3349a4e0916cec37e7b838c83c95b9fa95.tar.bz2 linux-3.10-d75dcd3349a4e0916cec37e7b838c83c95b9fa95.zip |
rtc: rtc-vr41xx: use dev_info() instead of printk()
Fix the checkpatch warning as below:
WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ...
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>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-vr41xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-vr41xx.c b/drivers/rtc/rtc-vr41xx.c index 6c3774cf5a2..f91be04b905 100644 --- a/drivers/rtc/rtc-vr41xx.c +++ b/drivers/rtc/rtc-vr41xx.c @@ -352,7 +352,7 @@ static int rtc_probe(struct platform_device *pdev) disable_irq(aie_irq); disable_irq(pie_irq); - printk(KERN_INFO "rtc: Real Time Clock of NEC VR4100 series\n"); + dev_info(&pdev->dev, "Real Time Clock of NEC VR4100 series\n"); return 0; |