diff mbox

[U-Boot] common/cmd_bdinfo: show gd->board_type

Message ID 1434018429-29607-1-git-send-email-oe5hpm@oevsv.at
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Hannes Schmelzer June 11, 2015, 10:27 a.m. UTC
sometimes it is usefull to know if board-detection has
written the correct value into gd->board_type.

For this we add some output to the bdinfo command.

Signed-off-by: Hannes Schmelzer <oe5hpm@oevsv.at>

---

 common/cmd_bdinfo.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Tom Rini June 12, 2015, 12:12 p.m. UTC | #1
On Thu, Jun 11, 2015 at 12:27:09PM +0200, Hannes Schmelzer wrote:

> sometimes it is usefull to know if board-detection has
> written the correct value into gd->board_type.
> 
> For this we add some output to the bdinfo command.
> 
> Signed-off-by: Hannes Schmelzer <oe5hpm@oevsv.at>
> 

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c
index f16d5c7..ed3b935 100644
--- a/common/cmd_bdinfo.c
+++ b/common/cmd_bdinfo.c
@@ -400,6 +400,9 @@  static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc,
 	printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
 	printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
 #endif
+#ifdef CONFIG_BOARD_TYPES
+	printf("Board Type  = %ld\n", gd->board_type);
+#endif
 	return 0;
 }