From 0f8a416b20e24ea2b6efe341f16c26b26392fa40 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 8 Sep 2015 12:15:29 -0600 Subject: [PATCH] More fixes for warning removal typos --- arch/arm/src/lpc17xx/lpc17_emacram.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/arch/arm/src/lpc17xx/lpc17_emacram.h b/arch/arm/src/lpc17xx/lpc17_emacram.h index 158e83d9709..9d373e9d8f6 100644 --- a/arch/arm/src/lpc17xx/lpc17_emacram.h +++ b/arch/arm/src/lpc17xx/lpc17_emacram.h @@ -42,6 +42,7 @@ #include #include "chip.h" +#include "chip/lpc17_ethernet.h" #include "chip/lpc17_memorymap.h" /************************************************************************************ @@ -137,16 +138,10 @@ * 15,756 is not well aligned.). */ -#define LPC17_TXDESC_SIZE 8 -#define LPC17_TXSTAT_SIZE 4 - #define LPC17_TXDESCTAB_SIZE (CONFIG_NET_NTXDESC*LPC17_TXDESC_SIZE) #define LPC17_TXSTATTAB_SIZE (CONFIG_NET_NTXDESC*LPC17_TXSTAT_SIZE) #define LPC17_TXTAB_SIZE (LPC17_TXDESCTAB_SIZE+LPC17_TXSTATTAB_SIZE) -#define LPC17_RXDESC_SIZE 8 -#defube LPC17_RXSTAT_SIZE 8 - #define LPC17_RXDESCTAB_SIZE (CONFIG_NET_NRXDESC*LPC17_RXDESC_SIZE) #define LPC17_RXSTATTAB_SIZE (CONFIG_NET_NRXDESC*LPC17_RXSTAT_SIZE) #define LPC17_RXTAB_SIZE (LPC17_RXDESCTAB_SIZE+LPC17_RXSTATTAB_SIZE)