diff options
author | TsiChung Liew <tsicliew@gmail.com> | 2010-03-09 18:32:16 -0600 |
---|---|---|
committer | TsiChung Liew <tsicliew@gmail.com> | 2010-03-24 11:09:03 -0500 |
commit | d04c1efae3d834db6e21e9976e338bf1e588e987 (patch) | |
tree | 61c0c42980d18b5dd98531432bbfd53144bb30ee /board/freescale/m54455evb | |
parent | 116095eb1f0f7017ea8062aa8a8ba8ceecb430b5 (diff) | |
download | u-boot-imx-d04c1efae3d834db6e21e9976e338bf1e588e987.zip u-boot-imx-d04c1efae3d834db6e21e9976e338bf1e588e987.tar.gz u-boot-imx-d04c1efae3d834db6e21e9976e338bf1e588e987.tar.bz2 |
ColdFire: Correct bit definition
Use correct definition for _MASK and _UNMASK. It was combined in
the previous used and causes confusion.
Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
Diffstat (limited to 'board/freescale/m54455evb')
-rw-r--r-- | board/freescale/m54455evb/m54455evb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/m54455evb/m54455evb.c b/board/freescale/m54455evb/m54455evb.c index 293b5b0..866694f 100644 --- a/board/freescale/m54455evb/m54455evb.c +++ b/board/freescale/m54455evb/m54455evb.c @@ -107,7 +107,7 @@ int ide_preinit(void) { volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO; - gpio->par_fec |= (gpio->par_fec & GPIO_PAR_FEC_FEC1_MASK) | 0x10; + gpio->par_fec |= (gpio->par_fec & GPIO_PAR_FEC_FEC1_UNMASK) | 0x10; gpio->par_feci2c |= (gpio->par_feci2c & 0xF0FF) | (GPIO_PAR_FECI2C_MDC1_ATA_DIOR | GPIO_PAR_FECI2C_MDIO1_ATA_DIOW); |