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 BD6C015B10D; Mon, 28 Oct 2024 06:41:56 +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=1730097716; cv=none; b=j5bduPiolb8Zl8RiRPvEvtfJd4JkE4WfL09nfJPxowMAk8j/b2nzabtIN+TAWPech14HvHkjrZRBsoKhEuadGxap9KBiNM0oruIp0sMsRogByY9NTasvZrww++oS+r+UCyNZrtRx6nA4StNR+Et6tRi0osdHFxlBl5hRm5NR42A= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730097716; c=relaxed/simple; bh=Rgkwp6QhTww7Qrs3g+Kuc10YY9w8RT7r+XBNUBp8CEE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=mWDivyTtjPEKqX4o4jxwvMRQ9mioyieEjPCO5kBAbiznt5uCF8gPWRfhSrxB1PWCewX7X4RXx9eC2mUaoSHv+pgxLWsfOtY+B2sIuEaVFvTPtpvW46V8Eed11dlWzRnHlOaI4sges/Iot++Bpss7WL/pQm9awiYt9OtUglsGISM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hApKCbPr; 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="hApKCbPr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5CC35C4CEC3; Mon, 28 Oct 2024 06:41:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1730097716; bh=Rgkwp6QhTww7Qrs3g+Kuc10YY9w8RT7r+XBNUBp8CEE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hApKCbPrVnbV7dyGR96nKVUHIbzLq+LmcBsDhwsUe7Y64ecOLHiyeclXMsfiEyJbH x0z8g+jUmhVmpMBJkFdGSsw4NmB2RvCLazTnQncBVmes5fDD83wWPDCPkSSHxqJE35 jHQNlh7hdm8aA29uQVQWy6Ep9MEQChK96lGlsVaI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Alexey Klimov , Mark Brown , Sasha Levin Subject: [PATCH 6.6 117/208] ASoC: codecs: lpass-rx-macro: add missing CDC_RX_BCL_VBAT_RF_PROC2 to default regs values Date: Mon, 28 Oct 2024 07:24:57 +0100 Message-ID: <20241028062309.537402457@linuxfoundation.org> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241028062306.649733554@linuxfoundation.org> References: <20241028062306.649733554@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexey Klimov [ Upstream commit e249786b2188107a7c50e7174d35f955a60988a1 ] CDC_RX_BCL_VBAT_RF_PROC1 is listed twice and its default value is 0x2a which is overwriten by its next occurence in rx_defaults[]. The second one should be missing CDC_RX_BCL_VBAT_RF_PROC2 instead and its default value is expected 0x0. Signed-off-by: Alexey Klimov Link: https://patch.msgid.link/20240925043823.520218-2-alexey.klimov@linaro.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/lpass-rx-macro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/lpass-rx-macro.c b/sound/soc/codecs/lpass-rx-macro.c index 29197d34ec099..7e9f0ab914124 100644 --- a/sound/soc/codecs/lpass-rx-macro.c +++ b/sound/soc/codecs/lpass-rx-macro.c @@ -909,7 +909,7 @@ static const struct reg_default rx_defaults[] = { { CDC_RX_BCL_VBAT_PK_EST2, 0x01 }, { CDC_RX_BCL_VBAT_PK_EST3, 0x40 }, { CDC_RX_BCL_VBAT_RF_PROC1, 0x2A }, - { CDC_RX_BCL_VBAT_RF_PROC1, 0x00 }, + { CDC_RX_BCL_VBAT_RF_PROC2, 0x00 }, { CDC_RX_BCL_VBAT_TAC1, 0x00 }, { CDC_RX_BCL_VBAT_TAC2, 0x18 }, { CDC_RX_BCL_VBAT_TAC3, 0x18 }, -- 2.43.0