Print MTD's device OF path in the output of `mtd list` command.
Signed-off-by: Marek Behún <[email protected]>
Cc: Jagan Teki <[email protected]>
Cc: Priyanka Jain <[email protected]>
Cc: Simon Glass <[email protected]>
Cc: Heiko Schocher <[email protected]>
Cc: Jagan Teki <[email protected]>
Cc: Patrick Delaunay <[email protected]>
Cc: Patrice CHOTARD <[email protected]>
Cc: Miquel Raynal <[email protected]>
---
cmd/mtd.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/cmd/mtd.c b/cmd/mtd.c
index 485a963bdd..446cbc1038 100644
--- a/cmd/mtd.c
+++ b/cmd/mtd.c
@@ -126,6 +126,15 @@ static void mtd_show_device(struct mtd_info *mtd)
printf(" - driver: %s\n", mtd->dev->driver->name);
}
#endif
+#if defined(CONFIG_OF_CONTROL)
+ if (mtd->dev) {
+ char buf[256];
+ int res;
+
+ res = ofnode_get_path(mtd_get_ofnode(mtd), buf, 256);
+ printf(" - path: %s\n", res == 0 ? buf : "unavailable");
+ }
+#endif
/* MTD device information */
printf(" - type: ");
--
2.26.2