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 D162F231C9C; Mon, 10 Mar 2025 17:11:19 +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=1741626679; cv=none; b=pAzdEOMvQ/kOJGdNZtNC7xqwAQYK/9elg8FAKJJd9p53KYbaP7fXj7+WZgoFsQuBpjvG+rMJsuJR85McWyFNyl/m1wZfUAyvB/2B8/HXm3UHw5YyhHrtLy8d4zNUoYxiiRylWaYLo4volakqlJgjbGtbc36SXrGxoYdp2teTGEA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741626679; c=relaxed/simple; bh=IElROczVDSWoXLY+SB4m97M24MVAQ+dFJx1BU6xJUrM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=sQiLkaxwA8rQPr7Hkvmv8Af5RyvVdGVNft+ZEnCaJdY0hLHYsa3GX9ud8+JtPyGIaXoVX5sfMzGJEvsKMbFyVuVQnfwb2cflMDpbPEAgH5vVmpHyuMXitTpqjijTjysw+zIFKqWdW7/7FJLjzLsuJoe+PLu+1DlTVlloI9HpH2g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Rwvr0/7+; 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="Rwvr0/7+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5A6E9C4CEE5; Mon, 10 Mar 2025 17:11:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1741626679; bh=IElROczVDSWoXLY+SB4m97M24MVAQ+dFJx1BU6xJUrM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Rwvr0/7+Q3ZAemNwoQEyEA/GC0yNwq9+RBiwppx93jbGmS3t1DpL4JTdDhrK3rekh 0BJHrni1f1WA5sgjpyMDFjBk3D+Kk5IOHwFMFrUFmFl/t+AegXM1t2BCOfjSYrddAl ZvlSqgeAurAYVdLb46+h6B587nw0w10A6wgU86yU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Fan Yang <804284660@qq.com>, Xi Ruoyao , Mingcong Bai , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= Subject: [PATCH 6.13 043/207] platform/x86: thinkpad_acpi: Add battery quirk for ThinkPad X131e Date: Mon, 10 Mar 2025 18:03:56 +0100 Message-ID: <20250310170449.481239139@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250310170447.729440535@linuxfoundation.org> References: <20250310170447.729440535@linuxfoundation.org> User-Agent: quilt/0.68 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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Mingcong Bai commit d0d10eaedcb53740883d7e5d53c5e15c879b48fb upstream. Based on the dmesg messages from the original reporter: [ 4.964073] ACPI: \_SB_.PCI0.LPCB.EC__.HKEY: BCTG evaluated but flagged as error [ 4.964083] thinkpad_acpi: Error probing battery 2 Lenovo ThinkPad X131e also needs this battery quirk. Reported-by: Fan Yang <804284660@qq.com> Tested-by: Fan Yang <804284660@qq.com> Co-developed-by: Xi Ruoyao Signed-off-by: Xi Ruoyao Signed-off-by: Mingcong Bai Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/20250221164825.77315-1-jeffbai@aosc.io Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen Signed-off-by: Greg Kroah-Hartman --- drivers/platform/x86/thinkpad_acpi.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -9958,6 +9958,7 @@ static const struct tpacpi_quirk battery * Individual addressing is broken on models that expose the * primary battery as BAT1. */ + TPACPI_Q_LNV('G', '8', true), /* ThinkPad X131e */ TPACPI_Q_LNV('8', 'F', true), /* Thinkpad X120e */ TPACPI_Q_LNV('J', '7', true), /* B5400 */ TPACPI_Q_LNV('J', 'I', true), /* Thinkpad 11e */