[U-Boot-Users] [PATCH] Add printing IMMRBAR for CONFIG_MPC83XX

hi!
the following patch is applied against top of tree.
Signed-off-by: Horst Kronstorfer <hkronsto <at> frequentis.com>
CHANGELOG
* Added printing IMMRBAR for CONFIG_MPC83XX to command 'bdinfo': Patch by Horst Kronstorfer, 03 Feb 2006
common/cmd_bdinfo.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c index 40e28dd..e0370a4 100644 --- a/common/cmd_bdinfo.c +++ b/common/cmd_bdinfo.c @@ -58,6 +58,8 @@ int do_bdinfo ( cmd_tbl_t *cmdtp, int fl #if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \ defined(CONFIG_8260) || defined(CONFIG_E500) print_num ("immr_base", bd->bi_immr_base ); +#elif defined(CONFIG_MPC83XX) + print_num ("immrbar", bd->bi_immrbar ); #endif print_num ("bootflags", bd->bi_bootflags ); #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
participants (1)
-
KRONSTORFER Horst