summaryrefslogtreecommitdiff
path: root/lib/rbcodec/dsp/dsp_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/dsp/dsp_misc.c')
-rw-r--r--lib/rbcodec/dsp/dsp_misc.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/rbcodec/dsp/dsp_misc.c b/lib/rbcodec/dsp/dsp_misc.c
index 8687abc06a..24ec857e3a 100644
--- a/lib/rbcodec/dsp/dsp_misc.c
+++ b/lib/rbcodec/dsp/dsp_misc.c
@@ -149,13 +149,6 @@ unsigned int dsp_get_output_frequency(struct dsp_config *dsp)
149 return dsp_configure(dsp, DSP_GET_OUT_FREQUENCY, 0); 149 return dsp_configure(dsp, DSP_GET_OUT_FREQUENCY, 0);
150} 150}
151 151
152static void misc_dsp_init(struct dsp_config *dsp, unsigned int dsp_id)
153{
154 /* Enable us for the audio DSP at startup */
155 if (dsp_id == CODEC_IDX_AUDIO)
156 dsp_proc_enable(dsp, DSP_PROC_MISC_HANDLER, true);
157}
158
159/* This is a null-processing stage that monitors as an enabled stage but never 152/* This is a null-processing stage that monitors as an enabled stage but never
160 * becomes active in processing samples. It only hooks messages. */ 153 * becomes active in processing samples. It only hooks messages. */
161 154
@@ -167,10 +160,6 @@ static intptr_t misc_handler_configure(struct dsp_proc_entry *this,
167{ 160{
168 switch (setting) 161 switch (setting)
169 { 162 {
170 case DSP_INIT:
171 misc_dsp_init(dsp, value);
172 break;
173
174 case DSP_PROC_CLOSE: 163 case DSP_PROC_CLOSE:
175 /* This stage should be enabled at all times */ 164 /* This stage should be enabled at all times */
176 DEBUGF("DSP_PROC_MISC_HANDLER - Error: Closing!\n"); 165 DEBUGF("DSP_PROC_MISC_HANDLER - Error: Closing!\n");