diff options
Diffstat (limited to 'firmware/drivers/audio/tlv320.c')
-rw-r--r-- | firmware/drivers/audio/tlv320.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/audio/tlv320.c b/firmware/drivers/audio/tlv320.c index 6118734d37..9fa676f3d5 100644 --- a/firmware/drivers/audio/tlv320.c +++ b/firmware/drivers/audio/tlv320.c @@ -40,7 +40,7 @@ static int vol_tenthdb2hw(int db) /* 0110000 == -73dB (0x30) */ /* 0101111 == mute (0x2f) */ - if (db < VOLUME_MIN) { + if (db <= -740) { return 0x2f; } else { return((db/10)+73+0x30); |