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 /cpu/mcf5445x/cpu_init.c | |
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 'cpu/mcf5445x/cpu_init.c')
-rw-r--r-- | cpu/mcf5445x/cpu_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mcf5445x/cpu_init.c b/cpu/mcf5445x/cpu_init.c index 48b37df..00b7910 100644 --- a/cpu/mcf5445x/cpu_init.c +++ b/cpu/mcf5445x/cpu_init.c @@ -164,9 +164,9 @@ int fecpin_setclear(struct eth_device *dev, int setclear) ~(GPIO_PAR_FECI2C_MDC0_MDC0 | GPIO_PAR_FECI2C_MDIO0_MDIO0); if (info->iobase == CONFIG_SYS_FEC0_IOBASE) - gpio->par_fec &= GPIO_PAR_FEC_FEC0_MASK; + gpio->par_fec &= GPIO_PAR_FEC_FEC0_UNMASK; else - gpio->par_fec &= GPIO_PAR_FEC_FEC1_MASK; + gpio->par_fec &= GPIO_PAR_FEC_FEC1_UNMASK; } return 0; } |