All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] leds: leds-is31fl32xx: fix an error in is31fl32xx_parse_dt()
@ 2021-06-05 12:49 Dan Carpenter
  2021-06-07 18:08 ` David Rivshin
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2021-06-05 12:49 UTC (permalink / raw)
  To: Pavel Machek; +Cc: David Rivshin, Jacek Anaszewski, linux-leds, kernel-janitors

Return -EBUSY if the data is already in use (instead of returning
success).

Fixes: 9d7cffaf99f5 ("leds: Add driver for the ISSI IS31FL32xx family of LED controllers")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
Not tested.  It prints an error so the intention seems clear, but
sometimes making stuff a failure instead of a success can lead to
unexpected problems in production.  On the other hand, if this is not
an error then shouldn't we do a continue instead of a goto err?

 drivers/leds/leds-is31fl32xx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/leds/leds-is31fl32xx.c b/drivers/leds/leds-is31fl32xx.c
index 3b55af9a8c58..e6f34464914f 100644
--- a/drivers/leds/leds-is31fl32xx.c
+++ b/drivers/leds/leds-is31fl32xx.c
@@ -386,6 +386,7 @@ static int is31fl32xx_parse_dt(struct device *dev,
 			dev_err(dev,
 				"Node %pOF 'reg' conflicts with another LED\n",
 				child);
+			ret = -EBUSY;
 			goto err;
 		}
 
-- 
2.30.2


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

end of thread, other threads:[~2021-06-07 18:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-05 12:49 [PATCH] leds: leds-is31fl32xx: fix an error in is31fl32xx_parse_dt() Dan Carpenter
2021-06-07 18:08 ` David Rivshin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.