summaryrefslogtreecommitdiff
path: root/firmware/pcm_record.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/pcm_record.c')
-rw-r--r--firmware/pcm_record.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/pcm_record.c b/firmware/pcm_record.c
index 0a70494288..ea444a31e1 100644
--- a/firmware/pcm_record.c
+++ b/firmware/pcm_record.c
@@ -348,12 +348,11 @@ void audio_set_recording_options(int frequency, int quality,
348 * Note that microphone is mono, only left value is used 348 * Note that microphone is mono, only left value is used
349 * See uda1380_set_recvol() for exact ranges. 349 * See uda1380_set_recvol() for exact ranges.
350 * 350 *
351 * @param type 0=line-in (radio), 1=mic, 2=ADC 351 * @param type 0=line-in (radio), 1=mic
352 * 352 *
353 */ 353 */
354void audio_set_recording_gain(int left, int right, int type) 354void audio_set_recording_gain(int left, int right, int type)
355{ 355{
356 //logf("rcmrec: t=%d l=%d r=%d", type, left, right);
357 uda1380_set_recvol(left, right, type); 356 uda1380_set_recvol(left, right, type);
358} 357}
359 358