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 9760B36B055; Tue, 16 Dec 2025 12:16:53 +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=1765887413; cv=none; b=e1p2+xBAAfx5Kik+j6v+R91KvBRuTg/KpWf+gDvqRY4ZNvRgQXXDwtKjEqYOam5AQUYLRdqNQe5TTJs/hWhtlJtY6A5UUe5ApL/lRhBpKrP7Yi9hkH2jaz1wx1Ig+jcmFRya6bJHEtd6/uW5w6uW7szIl8t3HkeD6N1BrlcigQg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765887413; c=relaxed/simple; bh=nEWIP8PNlGncgQdyVplK9tfpkxYO4pngZPGiReLIecU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Otwh+BC/6bz6IgzoXTJyiUG760B3PM2iopEbyOfc1FReiOXWlmlCuGocVK4Cm7N7mR19p6nKpbYOPy9kyBiFxKJHPTtfgyck6t92+rnoTpcl0mDgmDlJOG5ZQJFEXNBDCsY03j6WDjh/oUxfTt3o70BTLnE88uLG3Qg7sca2tRo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Uq/h6i0C; 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="Uq/h6i0C" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 077D9C4CEF1; Tue, 16 Dec 2025 12:16:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1765887413; bh=nEWIP8PNlGncgQdyVplK9tfpkxYO4pngZPGiReLIecU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Uq/h6i0CHNbzpT/zvZRFuJRvATtYxG4Z//2Hkm4evxenW88Z8lYby1YfEJE/+ZH29 J0dBqWtFcgSeG6zoQJ1Yn4Y7ILdm6BMV9ZRIuVF9n7PI1LOoCxz2Oo499ShVipKN0E JIxmm2r5tOOQ+qHg6f+gd8Z8Udpefc9mKkjVfSr0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jihed Chaibi , Kevin Hilman , Sasha Levin Subject: [PATCH 6.18 205/614] ARM: dts: omap3: beagle-xm: Correct obsolete TWL4030 power compatible Date: Tue, 16 Dec 2025 12:09:32 +0100 Message-ID: <20251216111408.804433856@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251216111401.280873349@linuxfoundation.org> References: <20251216111401.280873349@linuxfoundation.org> User-Agent: quilt/0.69 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.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jihed Chaibi [ Upstream commit f7f3bc18300a230e0f1bfb17fc8889435c1e47f5 ] The "ti,twl4030-power-beagleboard-xm" compatible string is obsolete and is not supported by any in-kernel driver. Currently, the kernel falls back to the second entry, "ti,twl4030-power-idle-osc-off", to bind a driver to this node. Make this fallback explicit by removing the obsolete board-specific compatible. This preserves the existing functionality while making the DTS compliant with the new, stricter 'ti,twl.yaml' binding. Fixes: 9188883fd66e9 ("ARM: dts: Enable twl4030 off-idle configuration for selected omaps") Signed-off-by: Jihed Chaibi Link: https://lore.kernel.org/r/20250914192516.164629-3-jihed.chaibi.dev@gmail.com Signed-off-by: Kevin Hilman Signed-off-by: Sasha Levin --- arch/arm/boot/dts/ti/omap/omap3-beagle-xm.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/ti/omap/omap3-beagle-xm.dts b/arch/arm/boot/dts/ti/omap/omap3-beagle-xm.dts index 08ee0f8ea68fd..71b39a923d37c 100644 --- a/arch/arm/boot/dts/ti/omap/omap3-beagle-xm.dts +++ b/arch/arm/boot/dts/ti/omap/omap3-beagle-xm.dts @@ -291,7 +291,7 @@ codec { }; twl_power: power { - compatible = "ti,twl4030-power-beagleboard-xm", "ti,twl4030-power-idle-osc-off"; + compatible = "ti,twl4030-power-idle-osc-off"; ti,use_poweroff; }; }; -- 2.51.0