mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-19 11:04:00 +08:00
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>
This commit is contained in:
parent
dcba91056f
commit
b75d280272
@ -216,13 +216,13 @@ static int wm8350_led_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
isink = devm_regulator_get(&pdev->dev, "led_isink");
|
isink = devm_regulator_get(&pdev->dev, "led_isink");
|
||||||
if (IS_ERR(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);
|
return PTR_ERR(isink);
|
||||||
}
|
}
|
||||||
|
|
||||||
dcdc = devm_regulator_get(&pdev->dev, "led_vcc");
|
dcdc = devm_regulator_get(&pdev->dev, "led_vcc");
|
||||||
if (IS_ERR(dcdc)) {
|
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);
|
return PTR_ERR(dcdc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user