summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2019-02-04 22:42:05 -0800
committerKeith Packard <keithp@keithp.com>2019-02-18 13:00:59 -0800
commitacf032eb39504657e9289ca54844967b9c3bed76 (patch)
tree125bc1d49f161b24775cbde1fee0ce292e34c04f
parentd7f8c9262f7979ddcc93cb64b913e392c18ef674 (diff)
altos: Fix spelling of stm_dma_ch4_5_6_isr
This spellingn error would have caused all DMA to these channels to fail. Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--src/stmf0/ao_dma_stm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stmf0/ao_dma_stm.c b/src/stmf0/ao_dma_stm.c
index 7045514c..f3fa13b4 100644
--- a/src/stmf0/ao_dma_stm.c
+++ b/src/stmf0/ao_dma_stm.c
@@ -64,7 +64,7 @@ void stm_dma_ch2_3_isr(void) {
ch_mask(STM_DMA_INDEX(3)));
}
-void stm_dma1_ch4_5_6_isr(void) {
+void stm_dma_ch4_5_6_isr(void) {
ao_dma_isr(STM_DMA_INDEX(4), STM_DMA_INDEX(6),
ch_mask(STM_DMA_INDEX(4)) |
ch_mask(STM_DMA_INDEX(5)) |