aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32F1xx
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-04-18 17:34:17 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-04-18 17:34:17 +0000
commit2446f558dbb555da50a0d76e28ee148f4ee564bd (patch)
tree249a82e7f6137de2bfa863cbb9ad77f24c76d074 /os/hal/platforms/STM32F1xx
parent1d0b686cebaff426e98f89f00d63762d8353e9f7 (diff)
downloadChibiOS-2446f558dbb555da50a0d76e28ee148f4ee564bd.tar.gz
ChibiOS-2446f558dbb555da50a0d76e28ee148f4ee564bd.tar.bz2
ChibiOS-2446f558dbb555da50a0d76e28ee148f4ee564bd.zip
Fixed bub 3519202.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4115 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32F1xx')
-rw-r--r--os/hal/platforms/STM32F1xx/stm32_dma.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32F1xx/stm32_dma.h b/os/hal/platforms/STM32F1xx/stm32_dma.h
index 67cdab540..a4cae4ea6 100644
--- a/os/hal/platforms/STM32F1xx/stm32_dma.h
+++ b/os/hal/platforms/STM32F1xx/stm32_dma.h
@@ -363,7 +363,7 @@ typedef void (*stm32_dmaisr_t)(void *p, uint32_t flags);
*
* @param[in] dmastp pointer to a stm32_dma_stream_t structure
*/
-#define dmaWaitCompletion(dmastp) \
+#define dmaWaitCompletion(dmastp) { \
while ((dmastp)->channel->CNDTR > 0) \
; \
dmaStreamDisable(dmastp); \