mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
793f8ab62c
Add kernel patches for version 6.1. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From 4aec425e27e06f9743fd3f869f6ead77260cf523 Mon Sep 17 00:00:00 2001
|
|
From: Joerg Schambacher <joerg@hifiberry.com>
|
|
Date: Tue, 15 Nov 2022 18:04:45 +0100
|
|
Subject: [PATCH] ASoC:ma120x0p: Corrects the volume level display
|
|
|
|
Fixes the wrongly changed 'limiter volume' display back to -50dB minimum
|
|
and sets the correct minimum volume level to -144dB to be aligned with
|
|
the controls and display in alsamixer etc.
|
|
|
|
Signed-off-by: Joerg Schambacher <joerg@hifiberry.com>
|
|
---
|
|
sound/soc/codecs/ma120x0p.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/sound/soc/codecs/ma120x0p.c
|
|
+++ b/sound/soc/codecs/ma120x0p.c
|
|
@@ -893,8 +893,8 @@ static SOC_VALUE_ENUM_SINGLE_DECL(pwr_mo
|
|
pwr_mode_texts,
|
|
pwr_mode_values);
|
|
|
|
-static const DECLARE_TLV_DB_SCALE(ma120x0p_vol_tlv, -5000, 100, 0);
|
|
-static const DECLARE_TLV_DB_SCALE(ma120x0p_lim_tlv, -14400, 100, 0);
|
|
+static const DECLARE_TLV_DB_SCALE(ma120x0p_vol_tlv, -14400, 100, 0);
|
|
+static const DECLARE_TLV_DB_SCALE(ma120x0p_lim_tlv, -5000, 100, 0);
|
|
static const DECLARE_TLV_DB_SCALE(ma120x0p_lr_tlv, -5000, 100, 0);
|
|
|
|
static const struct snd_kcontrol_new ma120x0p_snd_controls[] = {
|