diff options
author | Detlev Zundel <dzu@denx.de> | 2010-03-12 10:01:12 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-03-21 22:44:42 +0100 |
commit | fd428c05c863aefb575b12b2a1916b02d5bfa759 (patch) | |
tree | af61cbc1d945fde6037ef62ce66723e7231183d5 /board/jupiter | |
parent | c0c316569f70055eb7c70864aaa6d48666782600 (diff) | |
download | u-boot-fd428c05c863aefb575b12b2a1916b02d5bfa759.zip u-boot-fd428c05c863aefb575b12b2a1916b02d5bfa759.tar.gz u-boot-fd428c05c863aefb575b12b2a1916b02d5bfa759.tar.bz2 |
mpc5xxx: Remove all references to MGT5100
We do not support a processor that never reached a real customer.
Signed-off-by: Detlev Zundel <dzu@denx.de>
Diffstat (limited to 'board/jupiter')
-rw-r--r-- | board/jupiter/jupiter.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/board/jupiter/jupiter.c b/board/jupiter/jupiter.c index 6e752c6..967aabd 100644 --- a/board/jupiter/jupiter.c +++ b/board/jupiter/jupiter.c @@ -227,10 +227,6 @@ void flash_preinit(void) * Note that CS_BOOT cannot be cleared when * executing in flash. */ -#if defined(CONFIG_MGT5100) - *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25); /* disable CS_BOOT */ - *(vu_long *)MPC5XXX_ADDECR |= (1 << 16); /* enable CS0 */ -#endif *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */ } @@ -248,10 +244,8 @@ void flash_afterinit(ulong size) *(vu_long *)MPC5XXX_BOOTCS_STOP = *(vu_long *)MPC5XXX_CS0_STOP = STOP_REG(CONFIG_SYS_BOOTCS_START | size, size); } -#if defined(CONFIG_MPC5200) *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25); /* disable CS_BOOT */ *(vu_long *)MPC5XXX_ADDECR |= (1 << 16); /* enable CS0 */ -#endif } int update_flash_size (int flash_size) |