diff options
author | roy zang <tie-fei.zang@freescale.com> | 2006-11-03 13:15:31 +0800 |
---|---|---|
committer | Zang Tiefei <roy@bus.ap.freescale.net> | 2006-11-03 13:15:31 +0800 |
commit | 0a8eb59983047ae3bcc0babf3ee4d10d01abe7da (patch) | |
tree | aeb5b6213312c95dddedc5fb3117eeca248b2195 /board/bc3450/bc3450.c | |
parent | 4831c8b8a97799da77923d6bbb4c260c0d45521c (diff) | |
parent | ee58ea2689930669678fdcb27bf0cc5c341e18eb (diff) | |
download | u-boot-imx-0a8eb59983047ae3bcc0babf3ee4d10d01abe7da.zip u-boot-imx-0a8eb59983047ae3bcc0babf3ee4d10d01abe7da.tar.gz u-boot-imx-0a8eb59983047ae3bcc0babf3ee4d10d01abe7da.tar.bz2 |
Merge branch 'master' into hpc2
Diffstat (limited to 'board/bc3450/bc3450.c')
-rw-r--r-- | board/bc3450/bc3450.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/board/bc3450/bc3450.c b/board/bc3450/bc3450.c index 0d86518..05bb723 100644 --- a/board/bc3450/bc3450.c +++ b/board/bc3450/bc3450.c @@ -295,7 +295,6 @@ void pci_init_board(void) #endif #if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) -#define GPIO_PSC1_4 0x01000000UL void init_ide_reset (void) { @@ -311,9 +310,9 @@ void ide_set_reset (int idereset) debug ("ide_reset(%d)\n", idereset); if (idereset) { - *(vu_long *) MPC5XXX_WU_GPIO_DATA &= ~GPIO_PSC1_4; + *(vu_long *) MPC5XXX_WU_GPIO_DATA_O &= ~GPIO_PSC1_4; } else { - *(vu_long *) MPC5XXX_WU_GPIO_DATA |= GPIO_PSC1_4; + *(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_PSC1_4; } } #endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */ |