diff options
| author | Wolfgang Denk <wd@denx.de> | 2007-06-08 10:24:58 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-06-08 10:24:58 +0200 | 
| commit | 9045f33c023f698660a2e45d1b2194c0711abebc (patch) | |
| tree | 6519102cbd7a07ea01ba683ca99fcd62a16be866 /lib_ppc/board.c | |
| parent | 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7 (diff) | |
| download | olio-uboot-2014.01-9045f33c023f698660a2e45d1b2194c0711abebc.tar.xz olio-uboot-2014.01-9045f33c023f698660a2e45d1b2194c0711abebc.zip | |
Fix config problems on SC3 board; make ide_reset_timeout work.
Diffstat (limited to 'lib_ppc/board.c')
| -rw-r--r-- | lib_ppc/board.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 9e85cdddc..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 @@ -820,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"); @@ -929,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 */ |