All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nand: brcmnand: return without disabling clock
@ 2020-04-02  8:37 Álvaro Fernández Rojas
  2020-04-02  9:15 ` Daniel Schwierzeck
  2020-04-23 19:10 ` Daniel Schwierzeck
  0 siblings, 2 replies; 5+ messages in thread
From: Álvaro Fernández Rojas @ 2020-04-02  8:37 UTC (permalink / raw)
  To: u-boot

Linux Broadcom NAND driver only disabled clock if no childs are initialized.
This section of the code seems to have been accidentally dropped when it was
imported in U-Boot.

Signed-off-by: ?lvaro Fern?ndez Rojas <noltari@gmail.com>
---
 drivers/mtd/nand/raw/brcmnand/brcmnand.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/raw/brcmnand/brcmnand.c b/drivers/mtd/nand/raw/brcmnand/brcmnand.c
index 5232328e1e..7bdebf5869 100644
--- a/drivers/mtd/nand/raw/brcmnand/brcmnand.c
+++ b/drivers/mtd/nand/raw/brcmnand/brcmnand.c
@@ -2714,6 +2714,14 @@ int brcmnand_probe(struct udevice *dev, struct brcmnand_soc *soc)
 	}
 #endif /* __UBOOT__ */
 
+	/* No chip-selects could initialize properly */
+	if (list_empty(&ctrl->host_list)) {
+		ret = -ENODEV;
+		goto err;
+	}
+
+	return 0;
+
 err:
 #ifndef __UBOOT__
 	clk_disable_unprepare(ctrl->clk);
@@ -2722,7 +2730,6 @@ err:
 		clk_disable(ctrl->clk);
 #endif /* __UBOOT__ */
 	return ret;
-
 }
 EXPORT_SYMBOL_GPL(brcmnand_probe);
 
-- 
2.20.1

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

end of thread, other threads:[~2020-04-23 19:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-02  8:37 [PATCH] nand: brcmnand: return without disabling clock Álvaro Fernández Rojas
2020-04-02  9:15 ` Daniel Schwierzeck
2020-04-02 15:49   ` Tom Rini
2020-04-02 15:57     ` Álvaro Fernández Rojas
2020-04-23 19:10 ` Daniel Schwierzeck

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.