summaryrefslogtreecommitdiff
path: root/firmware/target/arm/pcm-telechips.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/pcm-telechips.c')
-rw-r--r--firmware/target/arm/pcm-telechips.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/firmware/target/arm/pcm-telechips.c b/firmware/target/arm/pcm-telechips.c
index aff43171f6..ae4aa5ef38 100644
--- a/firmware/target/arm/pcm-telechips.c
+++ b/firmware/target/arm/pcm-telechips.c
@@ -57,11 +57,6 @@ struct dma_data dma_play_data SHAREDBSS_ATTR =
57 .state = 0 57 .state = 0
58}; 58};
59 59
60void pcm_postinit(void)
61{
62 audiohw_postinit();
63}
64
65const void * pcm_play_dma_get_peak_buffer(int *count) 60const void * pcm_play_dma_get_peak_buffer(int *count)
66{ 61{
67 unsigned long addr = (unsigned long)dma_play_data.p; 62 unsigned long addr = (unsigned long)dma_play_data.p;
@@ -110,6 +105,11 @@ void pcm_play_dma_init(void)
110#endif 105#endif
111} 106}
112 107
108void pcm_play_dma_postinit(void)
109{
110 audiohw_postinit();
111}
112
113void pcm_dma_apply_settings(void) 113void pcm_dma_apply_settings(void)
114{ 114{
115} 115}