diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-11-25 12:45:11 +0530 |
---|---|---|
committer | Bryan Wu <cooloney@gmail.com> | 2012-11-27 14:49:29 -0800 |
commit | b75d280272bd0cbc79024b4635b0ccd67c416953 (patch) | |
tree | 9d9c44d6c0ebb2f3e3a14de6e33bc663738be898 /drivers/leds | |
parent | dcba91056f1271ced1aca111e11514dcbf059922 (diff) | |
download | linux-3.10-b75d280272bd0cbc79024b4635b0ccd67c416953.tar.gz linux-3.10-b75d280272bd0cbc79024b4635b0ccd67c416953.tar.bz2 linux-3.10-b75d280272bd0cbc79024b4635b0ccd67c416953.zip |
leds: leds-wm8350: Use dev_err instead of printk
Fixes the following type of checkpatch warnings:
WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ...
then pr_err(... to printk(KERN_ERR ...
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'drivers/leds')
-rw-r--r-- | drivers/leds/leds-wm8350.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-wm8350.c b/drivers/leds/leds-wm8350.c index 88f23f84559..ed15157c8f6 100644 --- a/drivers/leds/leds-wm8350.c +++ b/drivers/leds/leds-wm8350.c @@ -216,13 +216,13 @@ static int wm8350_led_probe(struct platform_device *pdev) isink = devm_regulator_get(&pdev->dev, "led_isink"); if (IS_ERR(isink)) { - printk(KERN_ERR "%s: can't get ISINK\n", __func__); + dev_err(&pdev->dev, "%s: can't get ISINK\n", __func__); return PTR_ERR(isink); } dcdc = devm_regulator_get(&pdev->dev, "led_vcc"); if (IS_ERR(dcdc)) { - printk(KERN_ERR "%s: can't get DCDC\n", __func__); + dev_err(&pdev->dev, "%s: can't get DCDC\n", __func__); return PTR_ERR(dcdc); } |