summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/dummy_codec.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/audio/dummy_codec.c')
-rw-r--r--firmware/drivers/audio/dummy_codec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/drivers/audio/dummy_codec.c b/firmware/drivers/audio/dummy_codec.c
index 3e73137eb9..fbbe836499 100644
--- a/firmware/drivers/audio/dummy_codec.c
+++ b/firmware/drivers/audio/dummy_codec.c
@@ -40,9 +40,9 @@ void audiohw_set_frequency(int fsel)
40#ifdef HAVE_SW_VOLUME_CONTROL 40#ifdef HAVE_SW_VOLUME_CONTROL
41void audiohw_set_volume(int vol_l, int vol_r) 41void audiohw_set_volume(int vol_l, int vol_r)
42{ 42{
43 /* SW volume for <= 1.0 gain, HW at unity, < VOLUME_MIN == MUTE */ 43 /* SW volume for <= 1.0 gain, HW at unity, <= DUMMY_VOLUME_MIN == MUTE */
44 int sw_volume_l = vol_l < VOLUME_MIN ? PCM_MUTE_LEVEL : MIN(vol_l, 0); 44 int sw_volume_l = vol_l <= DUMMY_VOLUME_MIN ? PCM_MUTE_LEVEL : vol_l;
45 int sw_volume_r = vol_r < VOLUME_MIN ? PCM_MUTE_LEVEL : MIN(vol_r, 0); 45 int sw_volume_r = vol_r <= DUMMY_VOLUME_MIN ? PCM_MUTE_LEVEL : vol_r;
46 pcm_set_master_volume(sw_volume_l, sw_volume_r); 46 pcm_set_master_volume(sw_volume_l, sw_volume_r);
47} 47}
48#endif /* HAVE_SW_VOLUME_CONTROL */ 48#endif /* HAVE_SW_VOLUME_CONTROL */