aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32F4xx
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-06-27 18:23:08 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-06-27 18:23:08 +0000
commita40226ad685dbb60d0dd6f70f244be0edea4dfa9 (patch)
treed708ff5142f0aa3632a07af61870f4a5195c27f3 /os/hal/platforms/STM32F4xx
parentd2e24645e8fb436c24781c154d12ebeec6791b7a (diff)
downloadChibiOS-a40226ad685dbb60d0dd6f70f244be0edea4dfa9.tar.gz
ChibiOS-a40226ad685dbb60d0dd6f70f244be0edea4dfa9.tar.bz2
ChibiOS-a40226ad685dbb60d0dd6f70f244be0edea4dfa9.zip
Fixed bug 3538468.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4354 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32F4xx')
-rw-r--r--os/hal/platforms/STM32F4xx/stm32_dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32F4xx/stm32_dma.c b/os/hal/platforms/STM32F4xx/stm32_dma.c
index 32d7eafcf..283e02ca8 100644
--- a/os/hal/platforms/STM32F4xx/stm32_dma.c
+++ b/os/hal/platforms/STM32F4xx/stm32_dma.c
@@ -155,7 +155,7 @@ CH_IRQ_HANDLER(DMA1_Stream1_IRQHandler) {
flags = (DMA1->LISR >> 6) & STM32_DMA_ISR_MASK;
DMA1->LIFCR = STM32_DMA_ISR_MASK << 6;
if (dma_isr_redir[1].dma_func)
- dma_isr_redir[1].dma_func(dma_isr_redir[0].dma_param, flags);
+ dma_isr_redir[1].dma_func(dma_isr_redir[1].dma_param, flags);
CH_IRQ_EPILOGUE();
}