Minor code cleanup.

This commit is contained in:
Wolfgang Denk 2007-01-19 23:08:39 +01:00 committed by Wolfgang Denk
parent 2ed5594649
commit a401239664
3 changed files with 70 additions and 4 deletions

View File

@ -1,3 +1,69 @@
commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
Author: Heiko Schocher <hs@pollux.denx.de>
Date: Fri Jan 19 19:57:10 2007 +0100
[PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
Signed-off-by: Heiko Schocher <hs@denx.de>
commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
Author: Heiko Schocher <hs@pollux.denx.de>
Date: Fri Jan 19 18:05:26 2007 +0100
[PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
if you must swap the bytes between reading/writing.
(Needed for the SC3 board)
Signed-off-by: Heiko Schocher <hs@denx.de>
commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
Author: Stefan Roese <sr@denx.de>
Date: Thu Jan 18 16:05:47 2007 +0100
[PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
Signed-off-by: Stefan Roese <sr@denx.de>
commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
Author: Stefan Roese <sr@denx.de>
Date: Thu Jan 18 11:54:52 2007 +0100
[PATCH] Update Prodrive P3Mx support
Signed-off-by: Stefan Roese <sr@denx.de>
commit 34167a36c29ee946b727465db5c014746a08e978
Author: Stefan Roese <sr@denx.de>
Date: Thu Jan 18 11:48:10 2007 +0100
[PATCH] Add missing Taishan config file
Signed-off-by: Stefan Roese <sr@denx.de>
commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
Author: Heiko Schocher <hs@pollux.denx.de>
Date: Thu Jan 18 11:28:51 2007 +0100
[PATCH] Fix: Compilerwarnings for SC3 board.
The EBC Configuration Register is now by CFG_EBC_CFG definable
Added JFFS2 support for the SC3 board.
Signed-off-by: Heiko Schocher <hs@denx.de>
commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
Author: Stefan Roese <sr@denx.de>
Date: Thu Jan 18 10:25:34 2007 +0100
[PATCH] Add support for AMCC Taishan PPC440GX eval board
Signed-off-by: Stefan Roese <sr@denx.de>
commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
Author: Wolfgang Denk <wd@pollux.denx.de>
Date: Tue Jan 16 18:30:50 2007 +0100
Raname solidcard3 into sc3; add redundant env for sc3
commit 1bbbbdd20fcec9933697000dcf55ff7972622596
Author: Wolfgang Denk <wd@pollux.denx.de>
Date: Tue Jan 16 12:46:35 2007 +0100

View File

@ -267,7 +267,7 @@ U_BOOT_CMD(lcd_cur, 3, 1, do_lcd_cur,
"<count> <dir>- shift cursor on lcd <count> times, direction is <dir> \n"
" <count> - 0~31\n" " <dir> - 0,backward; 1, forward\n");
#if 0 // test-only
#if 0 /* test-only */
void set_phy_loopback_mode(void)
{
char devemac2[32];
@ -318,7 +318,7 @@ void set_phy_loopback_mode(void)
udelay(1000);
miiphy_write(devemac3, CONFIG_PHY3_ADDR, 0, 0x6000);
udelay(1000);
#endif
#endif /* 0 */
}
void set_phy_normal_mode(void)
@ -354,7 +354,7 @@ void set_phy_normal_mode(void)
miiphy_write(devemac3, CONFIG_PHY3_ADDR, 0x1c, 0x74f0);
}
#endif
#endif /* 0 - test only */
static int do_led_test_off(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
{

View File

@ -164,7 +164,7 @@ int board_early_init_f (void)
*GpioOdr &= ~(0x00300000);
*GpioTcr |= 0x00300000;
*GpioOr |= 0x00300000;
*GpioOr |= 0x00300000;
return 0;
}