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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent 2d5efea commit e1263f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)