From: Jingoo Han Date: Fri, 22 Feb 2013 00:45:24 +0000 (-0800) Subject: rtc: max77686: use dev_info() instead of printk() X-Git-Tag: upstream/snapshot3+hdmi~5683^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3cebeb53d921c2079be0f1bf20f8cae68c20ecc0;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git rtc: max77686: 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 Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/rtc/rtc-max77686.c b/drivers/rtc/rtc-max77686.c index 8ab56b0..6b1337f 100644 --- a/drivers/rtc/rtc-max77686.c +++ b/drivers/rtc/rtc-max77686.c @@ -503,7 +503,7 @@ static int max77686_rtc_probe(struct platform_device *pdev) struct max77686_rtc_info *info; int ret, virq; - printk(KERN_INFO "%s\n", __func__); + dev_info(&pdev->dev, "%s\n", __func__); info = kzalloc(sizeof(struct max77686_rtc_info), GFP_KERNEL); if (!info) @@ -542,7 +542,7 @@ static int max77686_rtc_probe(struct platform_device *pdev) &max77686_rtc_ops, THIS_MODULE); if (IS_ERR(info->rtc_dev)) { - printk(KERN_INFO "%s: fail\n", __func__); + dev_info(&pdev->dev, "%s: fail\n", __func__); ret = PTR_ERR(info->rtc_dev); dev_err(&pdev->dev, "Failed to register RTC device: %d\n", ret);