STM32 F7 Ethernet: Fix some backward conditinal compilation

This commit is contained in:
Gregory Nutt 2015-07-20 15:49:07 -06:00
parent 57191d15df
commit 84ffc1fe2c

View File

@ -238,7 +238,7 @@
#define DMA_ALIGN_UP(n) (((n) + DMA_BUFFER_MASK) & ~DMA_BUFFER_MASK)
#define DMA_ALIGN_DOWN(n) ((n) & ~DMA_BUFFER_MASK)
#ifdef CONFIG_STM32F7_ETH_ENHANCEDDESC
#ifndef CONFIG_STM32F7_ETH_ENHANCEDDESC
# define RXDESC_SIZE 16
# define TXDESC_SIZE 16
#else