mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 10:58:49 +08:00
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
This commit is contained in:
parent
d343c1879e
commit
a9d40d6d92
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue