diff options
| author | Stefan Roese <sr@denx.de> | 2008-10-21 11:43:08 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2008-10-21 11:43:08 +0200 | 
| commit | f61f1e150c84f5b9347fca79a4bc5f2286c545d2 (patch) | |
| tree | ab90f076f18e56b2b3e8c9375b95917daa78c1d9 /board/netstal/mcu25/mcu25.c | |
| parent | ec081c2c190148b374e86a795fb6b1c49caeb549 (diff) | |
| parent | f82642e33899766892499b163e60560fbbf87773 (diff) | |
| download | olio-uboot-2014.01-f61f1e150c84f5b9347fca79a4bc5f2286c545d2.tar.xz olio-uboot-2014.01-f61f1e150c84f5b9347fca79a4bc5f2286c545d2.zip  | |
Merge branch 'master' of /home/stefan/git/u-boot/u-boot
Diffstat (limited to 'board/netstal/mcu25/mcu25.c')
| -rw-r--r-- | board/netstal/mcu25/mcu25.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/board/netstal/mcu25/mcu25.c b/board/netstal/mcu25/mcu25.c index ed171bfeb..66ed95fb9 100644 --- a/board/netstal/mcu25/mcu25.c +++ b/board/netstal/mcu25/mcu25.c @@ -74,9 +74,9 @@ int board_early_init_f (void)  	mtdcr(cntrl1, CPC0_CR1_VALUE);  	mtdcr(ecr, 0x60606000);  	mtdcr(CPC0_EIRR, 0x7C000000); -	out32(GPIO0_OR,		CFG_GPIO0_OR ); -	out32(GPIO0_TCR,	CFG_GPIO0_TCR); -	out32(GPIO0_ODR,	CFG_GPIO0_ODR); +	out32(GPIO0_OR,		CONFIG_SYS_GPIO0_OR ); +	out32(GPIO0_TCR,	CONFIG_SYS_GPIO0_TCR); +	out32(GPIO0_ODR,	CONFIG_SYS_GPIO0_ODR);  	mtspr(ccr0,      0x00700000);  	return 0; @@ -141,7 +141,7 @@ u32 hcu_get_slot(void)   */  u32 get_serial_number(void)  { -	u32 serial = in_be32((u32 *)CFG_FLASH_BASE); +	u32 serial = in_be32((u32 *)CONFIG_SYS_FLASH_BASE);  	if (serial == 0xffffffff)  		return 0;  |