diff options
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 48b37dfe7..00b7910cc 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;  } |