linux-leds.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] leds/leds-pwm: Display error code on request_pwm failure
@ 2013-12-17  0:08 Ben Gamari
  2013-12-17  1:26 ` Bryan Wu
  0 siblings, 1 reply; 4+ messages in thread
From: Ben Gamari @ 2013-12-17  0:08 UTC (permalink / raw)
  To: Bryan Wu, Richard Purdie; +Cc: linux-leds, Ben Gamari

This can be useful in debugging devicetrees.

Signed-off-by: Ben Gamari <bgamari.foss@gmail.com>
---
 drivers/leds/leds-pwm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/leds/leds-pwm.c b/drivers/leds/leds-pwm.c
index b31d8e9..707a82a 100644
--- a/drivers/leds/leds-pwm.c
+++ b/drivers/leds/leds-pwm.c
@@ -165,8 +165,8 @@ static int led_pwm_probe(struct platform_device *pdev)
 			if (IS_ERR(led_dat->pwm)) {
 				ret = PTR_ERR(led_dat->pwm);
 				dev_err(&pdev->dev,
-					"unable to request PWM for %s\n",
-					cur_led->name);
+					"unable to request PWM for %s: error=%d\n",
+					cur_led->name, ret);
 				goto err;
 			}
 
-- 
1.8.3.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-12-17  4:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-17  0:08 [PATCH] leds/leds-pwm: Display error code on request_pwm failure Ben Gamari
2013-12-17  1:26 ` Bryan Wu
2013-12-17  1:28   ` Bryan Wu
2013-12-17  4:05     ` Ben Gamari

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).