diff options
Diffstat (limited to 'drivers/net/fec_mxc.c')
| -rw-r--r-- | drivers/net/fec_mxc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 690e5724b..107cd6ecc 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c @@ -453,7 +453,7 @@ static int fec_open(struct eth_device *edev)  	 */  	writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_ETHER_EN,  		&fec->eth->ecntrl); -#if defined(CONFIG_MX25) || defined(CONFIG_MX53) +#if defined(CONFIG_MX25) || defined(CONFIG_MX53) || defined(CONFIG_MX6SL)  	udelay(100);  	/*  	 * setup the MII gasket for RMII mode @@ -794,7 +794,7 @@ static int fec_recv(struct eth_device *dev)  	uint16_t bd_status;  	uint32_t addr, size, end;  	int i; -	uchar buff[FEC_MAX_PKT_SIZE] __aligned(ARCH_DMA_MINALIGN); +	ALLOC_CACHE_ALIGN_BUFFER(uchar, buff, FEC_MAX_PKT_SIZE);  	/*  	 * Check if any critical events have happened |