diff options
| author | Markus Klotzbuecher <mk@denx.de> | 2008-10-21 09:18:01 +0200 | 
|---|---|---|
| committer | Markus Klotzbuecher <mk@denx.de> | 2008-10-21 09:18:01 +0200 | 
| commit | 50bd0057ba8fceeb48533f8b1a652ccd0e170838 (patch) | |
| tree | ea1a183343573c2a48248923b96d316c0956727c /drivers/net/vsc7385.c | |
| parent | 9dbc366744960013965fce8851035b6141f3b3ae (diff) | |
| parent | f82642e33899766892499b163e60560fbbf87773 (diff) | |
| download | olio-uboot-2014.01-50bd0057ba8fceeb48533f8b1a652ccd0e170838.tar.xz olio-uboot-2014.01-50bd0057ba8fceeb48533f8b1a652ccd0e170838.zip | |
Merge git://git.denx.de/u-boot into x1
Conflicts:
	drivers/usb/usb_ohci.c
Diffstat (limited to 'drivers/net/vsc7385.c')
| -rw-r--r-- | drivers/net/vsc7385.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/drivers/net/vsc7385.c b/drivers/net/vsc7385.c index 4e7259fd9..ada42c41f 100644 --- a/drivers/net/vsc7385.c +++ b/drivers/net/vsc7385.c @@ -35,13 +35,13 @@ int vsc7385_upload_firmware(void *firmware, unsigned int size)  	u8 *fw = firmware;  	unsigned int i; -	u32 *gloreset = (u32 *) (CFG_VSC7385_BASE + 0x1c050); -	u32 *icpu_ctrl = (u32 *) (CFG_VSC7385_BASE + 0x1c040); -	u32 *icpu_addr = (u32 *) (CFG_VSC7385_BASE + 0x1c044); -	u32 *icpu_data = (u32 *) (CFG_VSC7385_BASE + 0x1c048); -	u32 *icpu_rom_map = (u32 *) (CFG_VSC7385_BASE + 0x1c070); +	u32 *gloreset = (u32 *) (CONFIG_SYS_VSC7385_BASE + 0x1c050); +	u32 *icpu_ctrl = (u32 *) (CONFIG_SYS_VSC7385_BASE + 0x1c040); +	u32 *icpu_addr = (u32 *) (CONFIG_SYS_VSC7385_BASE + 0x1c044); +	u32 *icpu_data = (u32 *) (CONFIG_SYS_VSC7385_BASE + 0x1c048); +	u32 *icpu_rom_map = (u32 *) (CONFIG_SYS_VSC7385_BASE + 0x1c070);  #ifdef DEBUG -	u32 *chipid = (u32 *) (CFG_VSC7385_BASE + 0x1c060); +	u32 *chipid = (u32 *) (CONFIG_SYS_VSC7385_BASE + 0x1c060);  #endif  	out_be32(gloreset, 3); |