mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 13:56:20 +00:00
cmd: mtd: print device OF path in listing
Print MTD's device OF path in the output of `mtd list` command. Signed-off-by: Marek Behún <marek.behun@nic.cz> Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com> Tested-by: Patrice Chotard <patrice.chotard@foss.st.com> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com> Cc: Priyanka Jain <priyanka.jain@nxp.com> Cc: Simon Glass <sjg@chromium.org> Cc: Heiko Schocher <hs@denx.de> Cc: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
parent
3c58c79b5f
commit
0b6f907d15
1 changed files with 7 additions and 0 deletions
|
@ -126,6 +126,13 @@ static void mtd_show_device(struct mtd_info *mtd)
|
|||
printf(" - driver: %s\n", mtd->dev->driver->name);
|
||||
}
|
||||
#endif
|
||||
if (IS_ENABLED(CONFIG_OF_CONTROL) && 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");
|
||||
}
|
||||
|
||||
/* MTD device information */
|
||||
printf(" - type: ");
|
||||
|
|
Loading…
Add table
Reference in a new issue