Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dmaengine: stm32-mdma: fix STM32_MDMA_VERY_HIGH_PRIORITY value

STM32_MDMA_VERY_HIGH_PRIORITY is b11 not 0x11, so fix it with 0x3.

Signed-off-by: Amelie Delaunay <amelie.delaunay@foss.st.com>
Link: https://lore.kernel.org/r/20210104142045.25583-1-amelie.delaunay@foss.st.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Amelie Delaunay and committed by
Vinod Koul
e1263f92 2d5efea6

+1 -1
+1 -1
drivers/dma/stm32-mdma.c
··· 199 199 #define STM32_MDMA_MAX_CHANNELS 63 200 200 #define STM32_MDMA_MAX_REQUESTS 256 201 201 #define STM32_MDMA_MAX_BURST 128 202 - #define STM32_MDMA_VERY_HIGH_PRIORITY 0x11 202 + #define STM32_MDMA_VERY_HIGH_PRIORITY 0x3 203 203 204 204 enum stm32_mdma_trigger_mode { 205 205 STM32_MDMA_BUFFER,