diff options
Diffstat (limited to 'board/amcc/sequoia/sequoia.c')
| -rw-r--r-- | board/amcc/sequoia/sequoia.c | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/board/amcc/sequoia/sequoia.c b/board/amcc/sequoia/sequoia.c index 95734b9c5..a8ba2c083 100644 --- a/board/amcc/sequoia/sequoia.c +++ b/board/amcc/sequoia/sequoia.c @@ -140,10 +140,12 @@ int misc_init_r(void)  {  	uint pbcr;  	int size_val = 0; +#ifdef CONFIG_440EPX  	unsigned long usb2d0cr = 0;  	unsigned long usb2phy0cr, usb2h0cr = 0;  	unsigned long sdr0_pfc1;  	char *act = getenv("usbact"); +#endif  	/*  	 * FLASH stuff... @@ -211,6 +213,7 @@ int misc_init_r(void)  	/*  	 * USB suff...  	 */ +#ifdef CONFIG_440EPX  	if (act == NULL || strcmp(act, "hostdev") == 0)	{  		/* SDR Setting */          	mfsdr(SDR0_PFC1, sdr0_pfc1); @@ -322,6 +325,7 @@ int misc_init_r(void)  		printf("USB:   Device(int phy)\n");  	} +#endif /* CONFIG_440EPX */  	return 0;  } @@ -330,7 +334,11 @@ int checkboard(void)  {  	char *s = getenv("serial#"); +#ifdef CONFIG_440EPX  	printf("Board: Sequoia - AMCC PPC440EPx Evaluation Board"); +#else +	printf("Board: Rainier - AMCC PPC440GRx Evaluation Board"); +#endif  	if (s != NULL) {  		puts(", serial# ");  		puts(s); |