mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
Commit to certain names for cache coherency APIs and discard the aliases.
Wouldn't surprise me a bit to get some non-green. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31339 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
43d7a75369
commit
6a67707b5e
51 changed files with 120 additions and 213 deletions
|
|
@ -109,7 +109,7 @@ static void dma_callback(void)
|
|||
dma_rem_size = dma_start_size;
|
||||
|
||||
/* force writeback */
|
||||
clean_dcache_range(dma_start_addr, dma_start_size);
|
||||
commit_dcache_range(dma_start_addr, dma_start_size);
|
||||
play_start_pcm();
|
||||
pcm_play_dma_started_callback();
|
||||
}
|
||||
|
|
@ -131,7 +131,7 @@ void pcm_play_dma_start(const void *addr, size_t size)
|
|||
dma_retain();
|
||||
|
||||
/* force writeback */
|
||||
clean_dcache_range(dma_start_addr, dma_start_size);
|
||||
commit_dcache_range(dma_start_addr, dma_start_size);
|
||||
|
||||
bitset32(&CGU_AUDIO, (1<<11));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue