diff options
Diffstat (limited to 'lib_ppc')
| -rw-r--r-- | lib_ppc/board.c | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 1e7f172d6..c4fc5805a 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -76,7 +76,7 @@  extern int update_flash_size (int flash_size);  #endif -#if defined(CONFIG_SOLIDCARD3) +#if defined(CONFIG_SC3)  extern void sc3_read_eeprom(void);  #endif @@ -564,7 +564,9 @@ void board_init_f (ulong bootflag)  	bd->bi_procfreq = gd->cpu_clk;	/* Processor Speed, In Hz */  	bd->bi_plb_busfreq = gd->bus_clk; -#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_440EP) || defined(CONFIG_440GR) +#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \ +    defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ +    defined(CONFIG_440EPX) || defined(CONFIG_440GRX)  	bd->bi_pci_busfreq = get_PCI_freq ();  	bd->bi_opbfreq = get_OPB_freq ();  #elif defined(CONFIG_XILINX_ML300) @@ -818,7 +820,7 @@ void board_init_r (gd_t *id, ulong dest_addr)  #endif	/* CONFIG_405GP, CONFIG_405EP */  #endif	/* CFG_EXTBDINFO */ -#if defined(CONFIG_SOLIDCARD3) +#if defined(CONFIG_SC3)  	sc3_read_eeprom();  #endif  	s = getenv ("ethaddr"); @@ -927,7 +929,7 @@ void board_init_r (gd_t *id, ulong dest_addr)      defined(CONFIG_KUP4X)	|| \      defined(CONFIG_LWMON)	|| \      defined(CONFIG_PCU_E)	|| \ -    defined(CONFIG_SOLIDCARD3)	|| \ +    defined(CONFIG_SC3)		|| \      defined(CONFIG_W7O)		|| \      defined(CONFIG_MISC_INIT_R)  	/* miscellaneous platform dependent initialisations */ |