Skip to content

Commit e1263f9

Browse files
ADESTMvinodkoul
authored andcommitted
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>
1 parent 2d5efea commit e1263f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/dma/stm32-mdma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
#define STM32_MDMA_MAX_CHANNELS 63
200200
#define STM32_MDMA_MAX_REQUESTS 256
201201
#define STM32_MDMA_MAX_BURST 128
202-
#define STM32_MDMA_VERY_HIGH_PRIORITY 0x11
202+
#define STM32_MDMA_VERY_HIGH_PRIORITY 0x3
203203

204204
enum stm32_mdma_trigger_mode {
205205
STM32_MDMA_BUFFER,

0 commit comments

Comments
 (0)