summaryrefslogtreecommitdiff
path: root/firmware/target
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target')
-rw-r--r--firmware/target/arm/pp/pcm-pp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/pp/pcm-pp.c b/firmware/target/arm/pp/pcm-pp.c
index 3854206ae8..1b38994f7b 100644
--- a/firmware/target/arm/pp/pcm-pp.c
+++ b/firmware/target/arm/pp/pcm-pp.c
@@ -158,7 +158,7 @@ void ICODE_ATTR __attribute__((interrupt("FIQ"))) fiq_playback(void)
158 if (dma_play_data.addr < UNCACHED_BASE_ADDR) { 158 if (dma_play_data.addr < UNCACHED_BASE_ADDR) {
159 /* Flush any pending cache writes */ 159 /* Flush any pending cache writes */
160 dma_play_data.addr = UNCACHED_ADDR(dma_play_data.addr); 160 dma_play_data.addr = UNCACHED_ADDR(dma_play_data.addr);
161 commit_discard_idcache(); 161 commit_dcache();
162 } 162 }
163 } 163 }
164} 164}
@@ -444,7 +444,7 @@ void pcm_play_dma_start(const void *addr, size_t size)
444 if ((unsigned long)addr < UNCACHED_BASE_ADDR) { 444 if ((unsigned long)addr < UNCACHED_BASE_ADDR) {
445 /* Flush any pending cache writes */ 445 /* Flush any pending cache writes */
446 addr = UNCACHED_ADDR(addr); 446 addr = UNCACHED_ADDR(addr);
447 commit_discard_idcache(); 447 commit_dcache();
448 } 448 }
449 449
450 dma_play_data.addr = (unsigned long)addr; 450 dma_play_data.addr = (unsigned long)addr;