diff options
Diffstat (limited to 'common/cmd_boot.c')
| -rw-r--r-- | common/cmd_boot.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_boot.c b/common/cmd_boot.c index c2897a235..4e5ffb0a3 100644 --- a/common/cmd_boot.c +++ b/common/cmd_boot.c @@ -75,10 +75,10 @@ int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	print_num ("immr_base",	    bd->bi_immr_base	);  #endif  	print_num ("bootflags",	    bd->bi_bootflags	); -#if defined(CONFIG_405GP) || defined(CONFIG_405CR) +#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_405EP)  	print_str ("procfreq",	    strmhz(buf, bd->bi_procfreq));  	print_str ("plb_busfreq",	    strmhz(buf, bd->bi_plb_busfreq)); -#if defined(CONFIG_405GP) +#if defined(CONFIG_405GP) || defined(CONFIG_405EP)  	print_str ("pci_busfreq",	    strmhz(buf, bd->bi_pci_busfreq));  #endif  #else |