Commit 0330f93a authored by Sebastian Reichel's avatar Sebastian Reichel Committed by Dmitry Torokhov

Input: twl4030-pwrbutton - use dev_err for errors

Use dev_err() to output errors instead of dev_dbg().
Signed-off-by: default avatarSebastian Reichel <sre@debian.org>
Reviewed-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent c81e5926
...@@ -60,7 +60,7 @@ static int twl4030_pwrbutton_probe(struct platform_device *pdev) ...@@ -60,7 +60,7 @@ static int twl4030_pwrbutton_probe(struct platform_device *pdev)
pwr = input_allocate_device(); pwr = input_allocate_device();
if (!pwr) { if (!pwr) {
dev_dbg(&pdev->dev, "Can't allocate power button\n"); dev_err(&pdev->dev, "Can't allocate power button\n");
return -ENOMEM; return -ENOMEM;
} }
...@@ -74,13 +74,13 @@ static int twl4030_pwrbutton_probe(struct platform_device *pdev) ...@@ -74,13 +74,13 @@ static int twl4030_pwrbutton_probe(struct platform_device *pdev)
IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
"twl4030_pwrbutton", pwr); "twl4030_pwrbutton", pwr);
if (err < 0) { if (err < 0) {
dev_dbg(&pdev->dev, "Can't get IRQ for pwrbutton: %d\n", err); dev_err(&pdev->dev, "Can't get IRQ for pwrbutton: %d\n", err);
goto free_input_dev; goto free_input_dev;
} }
err = input_register_device(pwr); err = input_register_device(pwr);
if (err) { if (err) {
dev_dbg(&pdev->dev, "Can't register power button: %d\n", err); dev_err(&pdev->dev, "Can't register power button: %d\n", err);
goto free_irq; goto free_irq;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment