Skip to content
Snippets Groups Projects
Commit a9d40d6d authored by patacongo's avatar patacongo
Browse files

Fix compile errors with DMA debug off

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2284 42af7a65-404d-4744-a932-0658087f49c3
parent d343c187
No related branches found
No related tags found
No related merge requests found
......@@ -232,13 +232,15 @@ static inline uint32 stm32_getpwrctrl(void);
/* DMA Helpers **************************************************************/
#define stm32_dmasampleinit()
#define stm32_dmadumpsamples(priv)
#ifdef CONFIG_SDIO_DMA
#ifdef CONFIG_DEBUG_DMA
# undef stm32_dmasampleinit
# undef stm32_dmadumpsamples
static void stm32_dmasampleinit(void);
static void stm32_dmadumpsamples(struct stm32_dev_s *priv);
#else
# define stm32_dmasampleinit()
# define stm32_dmadumpsamples(priv)
#endif
static void stm32_dmacallback(DMA_HANDLE handle, ubyte isr, void *arg);
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment