diff options
Diffstat (limited to 'drivers/net/fec_mxc.c')
| -rw-r--r-- | drivers/net/fec_mxc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 210ef02df..107cd6ecc 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c @@ -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 |