summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/wm8758.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/audio/wm8758.c')
-rw-r--r--firmware/drivers/audio/wm8758.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/drivers/audio/wm8758.c b/firmware/drivers/audio/wm8758.c
index f7d7a5bc22..93ea7c2d6c 100644
--- a/firmware/drivers/audio/wm8758.c
+++ b/firmware/drivers/audio/wm8758.c
@@ -157,6 +157,10 @@ void audiohw_set_volume(int vol_l, int vol_r)
157void audiohw_set_lineout_volume(int vol_l, int vol_r) 157void audiohw_set_lineout_volume(int vol_l, int vol_r)
158{ 158{
159 int dac_l, amp_l, dac_r, amp_r; 159 int dac_l, amp_l, dac_r, amp_r;
160
161 vol_l = vol_tenthdb2hw(vol_l);
162 vol_r = vol_tenthdb2hw(vol_r);
163
160 get_volume_params(vol_l, &dac_l, &amp_l); 164 get_volume_params(vol_l, &dac_l, &amp_l);
161 get_volume_params(vol_r, &dac_r, &amp_r); 165 get_volume_params(vol_r, &dac_r, &amp_r);
162 166