From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8A028246795; Tue, 30 Sep 2025 15:15:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759245300; cv=none; b=uu5LITKnrpzlA2gHT6BFsSt9m4Hj7ou42Dq5dxJltXr5MW4lE7UDg56tjmJWWB8aVWX0+EFqmEQl6JkzETVwM1iKo2z7d6EYTCcJWhJF+I0RjZfUIFTBMfgEmiy8c6pJX+++ZJptxMhfEQjdEWii4ikC+U0HxwLaryxjQWDU2S0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759245300; c=relaxed/simple; bh=ecnYhkKI1s89DwT4mr+M3GhX0w38t8fRz0eXAoeIvFo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZVx/bBj4ETqbxK8/xeyI+NeZaeT0t/n743kpOnz4zCYvzWDF2rsPiA73Mh6rUchYZX4PwNKTbWYXy03O7/JbPOFEy9yQ6vDP5+DJA38or8o/ev1kLx+hudM9kfYikBwRdRUure7DsCrJVClcbTxRqXc9vQ59K974uAysRJE0wis= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=MqFzvCfl; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="MqFzvCfl" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E61C9C4CEF0; Tue, 30 Sep 2025 15:14:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1759245300; bh=ecnYhkKI1s89DwT4mr+M3GhX0w38t8fRz0eXAoeIvFo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MqFzvCflk3IjRyMlmTGOQ1b6my5dx2N+OvrclbefCZPbwV5r64ju0O8FqYj3E59qb ml+uXF/VeICH2iAxTCCUwNDxFwTW3d5TrPxdNy6scvQpjTlcdWM9NnHJfjvN/MUYAs lEd6PXgHLbDwbtB0CgWqJ0ctEz0+9eFhArzLoxVo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ankur Tyagi , Charles Keepax , Mark Brown , Sasha Levin Subject: [PATCH 5.15 085/151] ASoC: wm8940: Correct typo in control name Date: Tue, 30 Sep 2025 16:46:55 +0200 Message-ID: <20250930143830.983312516@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250930143827.587035735@linuxfoundation.org> References: <20250930143827.587035735@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Charles Keepax [ Upstream commit b4799520dcd6fe1e14495cecbbe9975d847cd482 ] Fixes: 0b5e92c5e020 ("ASoC WM8940 Driver") Reported-by: Ankur Tyagi Signed-off-by: Charles Keepax Tested-by: Ankur Tyagi Link: https://patch.msgid.link/20250821082639.1301453-3-ckeepax@opensource.cirrus.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/wm8940.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/wm8940.c b/sound/soc/codecs/wm8940.c index 440d048ef0c02..03f5aedab4a54 100644 --- a/sound/soc/codecs/wm8940.c +++ b/sound/soc/codecs/wm8940.c @@ -218,7 +218,7 @@ static const struct snd_kcontrol_new wm8940_snd_controls[] = { SOC_SINGLE_TLV("Digital Capture Volume", WM8940_ADCVOL, 0, 255, 0, wm8940_adc_tlv), SOC_ENUM("Mic Bias Level", wm8940_mic_bias_level_enum), - SOC_SINGLE_TLV("Capture Boost Volue", WM8940_ADCBOOST, + SOC_SINGLE_TLV("Capture Boost Volume", WM8940_ADCBOOST, 8, 1, 0, wm8940_capture_boost_vol_tlv), SOC_SINGLE_TLV("Speaker Playback Volume", WM8940_SPKVOL, 0, 63, 0, wm8940_spk_vol_tlv), -- 2.51.0