summaryrefslogtreecommitdiff
path: root/nuttx/arch
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-04-03 16:36:58 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-04-03 16:36:58 -0600
commit1298fd5a049921ccc4800742254a9e2188274418 (patch)
treefe9c936355a115fb66cc4e3e5594ad059dc8ff25 /nuttx/arch
parentddd97b8a48ed4d1e2d7a29dfe4703de6e52fca96 (diff)
downloadpx4-nuttx-1298fd5a049921ccc4800742254a9e2188274418.tar.gz
px4-nuttx-1298fd5a049921ccc4800742254a9e2188274418.tar.bz2
px4-nuttx-1298fd5a049921ccc4800742254a9e2188274418.zip
SAMV71-XULT ILI9488 LCD driver is code complete but untested
Diffstat (limited to 'nuttx/arch')
-rw-r--r--nuttx/arch/arm/src/samv7/sam_emac.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/nuttx/arch/arm/src/samv7/sam_emac.c b/nuttx/arch/arm/src/samv7/sam_emac.c
index 4ee2e3709..29725cff5 100644
--- a/nuttx/arch/arm/src/samv7/sam_emac.c
+++ b/nuttx/arch/arm/src/samv7/sam_emac.c
@@ -724,19 +724,19 @@ static struct emac_rxdesc_s g_emac0_rx1desc[DUMMY_NBUFFERS]
* shall be set to 0
*/
-static uint8_t g_emac0_tx0buffer[EMAC0_TX_BUFSIZE];
- __attribute__((aligned(EMAC_ALIGN)))
+static uint8_t g_emac0_tx0buffer[EMAC0_TX_BUFSIZE]
+ __attribute__((aligned(EMAC_ALIGN)));
-static uint8_t g_emac0_tx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE];
- __attribute__((aligned(EMAC_ALIGN)))
+static uint8_t g_emac0_tx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE]
+ __attribute__((aligned(EMAC_ALIGN)));
/* EMAC0 Receive Buffers */
static uint8_t g_emac0_rx0buffer[EMAC0_RX_BUFSIZE]
__attribute__((aligned(EMAC_ALIGN)));
-static uint8_t pRxDummyBuffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE];
- __attribute__((aligned(EMAC_ALIGN)))
+static uint8_t pRxDummyBuffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE]
+ __attribute__((aligned(EMAC_ALIGN)));
#endif
@@ -772,19 +772,19 @@ static struct emac_rxdesc_s g_emac1_rx1desc[DUMMY_NBUFFERS]
* shall be set to 0
*/
-static uint8_t g_emac1_tx1buffer[EMAC1_TX_BUFSIZE];
- __attribute__((aligned(EMAC_ALIGN)))
+static uint8_t g_emac1_tx1buffer[EMAC1_TX_BUFSIZE]
+ __attribute__((aligned(EMAC_ALIGN)));
-static uint8_t g_emac1_tx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE];
- __attribute__((aligned(EMAC_ALIGN)))
+static uint8_t g_emac1_tx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE]
+ __attribute__((aligned(EMAC_ALIGN)));
/* EMAC1 Receive Buffers */
static uint8_t g_emac1_rxbuffer[EMAC1_RX_BUFSIZE]
__attribute__((aligned(EMAC_ALIGN)));
-static uint8_t g_emac1_rx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE];
- __attribute__((aligned(EMAC_ALIGN)))
+static uint8_t g_emac1_rx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE]
+ __attribute__((aligned(EMAC_ALIGN)));
#endif
#endif