public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] cmd: mtdparts: Probe MTD devices in mtdparts_init()
@ 2018-10-30  9:51 Stefan Roese
  2018-10-30 10:03 ` Boris Brezillon
  0 siblings, 1 reply; 11+ messages in thread
From: Stefan Roese @ 2018-10-30  9:51 UTC (permalink / raw)
  To: u-boot

Calling "mtdparts" currently fails when its called before any other mtd
command (or ubi command) has been called. The MTD devices are not
probed at this point and therefore it fails e.g. with this message:

=> mtdparts
Device spi-nand0 not found!

This patch adds a call to mtd_probe_devices() to mtdparts_init() to
solve this issue. This also fixes a problem when calling "ubi part"
as first flash storage related command. Here also the warning from
above is printed without this patch.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Boris Brezillon <boris.brezillon@bootlin.com>
Cc: Jagan Teki <jagan@openedev.com>
---
 cmd/mtdparts.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/cmd/mtdparts.c b/cmd/mtdparts.c
index f7ed1a0779..d90e568143 100644
--- a/cmd/mtdparts.c
+++ b/cmd/mtdparts.c
@@ -73,6 +73,7 @@
 #include <common.h>
 #include <command.h>
 #include <malloc.h>
+#include <mtd.h>
 #include <jffs2/load_kernel.h>
 #include <linux/list.h>
 #include <linux/ctype.h>
@@ -1726,6 +1727,9 @@ int mtdparts_init(void)
 	char tmp_ep[PARTITION_MAXLEN + 1];
 	char tmp_parts[MTDPARTS_MAXLEN];
 
+	/* First probe all MTD devices */
+	mtd_probe_devices();
+
 	debug("\n---mtdparts_init---\n");
 	if (!initialized) {
 		INIT_LIST_HEAD(&mtdids);
-- 
2.19.1

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

end of thread, other threads:[~2018-10-31  6:05 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-30  9:51 [U-Boot] [PATCH] cmd: mtdparts: Probe MTD devices in mtdparts_init() Stefan Roese
2018-10-30 10:03 ` Boris Brezillon
2018-10-30 10:13   ` Stefan Roese
2018-10-30 10:41     ` Boris Brezillon
2018-10-30 10:59       ` Stefan Roese
2018-10-30 13:46         ` Boris Brezillon
2018-10-30 22:02         ` Boris Brezillon
2018-10-30 22:43           ` Boris Brezillon
2018-10-31  6:05             ` Stefan Roese
2018-10-30 22:43           ` Miquel Raynal
2018-10-30 22:49             ` Boris Brezillon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox