diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-10-30 20:30:27 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-10-31 01:18:27 +0000 |
commit | fe2d52cc7d0180acff26349f2904fba854de6fbc (patch) | |
tree | 62dbbe9a6e6ebc011e8e02f7428b8f620a83f698 /firmware/target/arm/rk27xx/pcm-rk27xx.c | |
parent | 2d85c7215169780168032617603e9e7b06d7ba25 (diff) | |
download | rockbox-fe2d52cc7d.tar.gz rockbox-fe2d52cc7d.tar.bz2 rockbox-fe2d52cc7d.zip |
pcm: Get rid of pcm_play_pause() and associated APIs
Nothing in the core has used it for some time. It's exported to the
plugin API but the last plugins to use it were switched to the mixer API
back in 2011.
This allows us to get rid of pcm_play_dma_pause() from all audio drivers
Change-Id: Ic3fa02592316f84963e41d792d1cabb436d1ff6b
Diffstat (limited to 'firmware/target/arm/rk27xx/pcm-rk27xx.c')
-rw-r--r-- | firmware/target/arm/rk27xx/pcm-rk27xx.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/firmware/target/arm/rk27xx/pcm-rk27xx.c b/firmware/target/arm/rk27xx/pcm-rk27xx.c index 21feaf6cc4..5cfe54f9de 100644 --- a/firmware/target/arm/rk27xx/pcm-rk27xx.c +++ b/firmware/target/arm/rk27xx/pcm-rk27xx.c @@ -114,21 +114,6 @@ void pcm_play_dma_start(const void *addr, size_t size) hdma_i2s_transfer(addr, size); } -/* pause DMA transfer by disabling clock to DMA module */ -void pcm_play_dma_pause(bool pause) -{ - if(pause) - { - SCU_CLKCFG |= CLKCFG_HDMA; - locked = 1; - } - else - { - SCU_CLKCFG &= ~CLKCFG_HDMA; - locked = 0; - } -} - static void i2s_init(void) { #if defined(HAVE_RK27XX_CODEC) |