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 3A96F2EE5FD; Tue, 17 Jun 2025 15:50:09 +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=1750175409; cv=none; b=Pu90ky5RZ0lfHYySFWx8Xhn0Wke5RsOURiswm18caxy0ZccsmJL6k3nMVa6rPaCDp1wF4mY+pI4jd31UQZHb7/Av/BB/TuxiOa2oNsP5Ti2ny8IPkIfY73Dz4uYzinAeETairsT+ZlRvFhqo7MQ+aer0lPDZXW2fmRhBLM/IXSA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750175409; c=relaxed/simple; bh=HC0jVr5vXaXRa9wBu7t27O3/mGqys9V5XLPE2gpXuO8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=jUKlMaj//ecpqBt9xHmxG8LQ27IhOmKcUKeJ24nzSf2CPwzF+abpps/QBIGg0Uk5EuxJ0z5Vy5jU64vGwRLO9PSb+ZkkOTFK8uagv+ymPeRRMIQAaaV+3ciwrZENiAOBzvoBqUA97MXnk9TqVlaqfVFT29shBUx3wrtKhDD+3+A= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ggqsNiTY; 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="ggqsNiTY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C02EFC4CEE3; Tue, 17 Jun 2025 15:50:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750175409; bh=HC0jVr5vXaXRa9wBu7t27O3/mGqys9V5XLPE2gpXuO8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ggqsNiTY2tElx9XbkJapu2dN5x5hz6O3Mo1Q1Ii3HHK1/e/p+CKe98WSHM4UewigV XX6lDcMg4uSxyqmtEMGikB0dNlaZEmPrPAgiNIc9a3DA3+6+KpRAcxLu0kkQIJHNlz 5mwP0oNNjYVJJxLGSQqe/8chaJ2eo/mWF6o7OzUU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Julien Massot , AngeloGioacchino Del Regno , Sasha Levin Subject: [PATCH 6.6 174/356] arm64: dts: mt6359: Add missing compatible property to regulators node Date: Tue, 17 Jun 2025 17:24:49 +0200 Message-ID: <20250617152345.218997368@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250617152338.212798615@linuxfoundation.org> References: <20250617152338.212798615@linuxfoundation.org> User-Agent: quilt/0.68 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: Julien Massot [ Upstream commit 1fe38d2a19950fa6dbc384ee8967c057aef9faf4 ] The 'compatible' property is required by the 'mfd/mediatek,mt6397.yaml' binding. Add it to fix the following dtb-check error: mediatek/mt8395-radxa-nio-12l.dtb: pmic: regulators: 'compatible' is a required property Fixes: 3b7d143be4b7 ("arm64: dts: mt6359: add PMIC MT6359 related nodes") Signed-off-by: Julien Massot Link: https://lore.kernel.org/r/20250505-mt8395-dtb-errors-v1-3-9c4714dcdcdb@collabora.com Signed-off-by: AngeloGioacchino Del Regno Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/mediatek/mt6359.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm64/boot/dts/mediatek/mt6359.dtsi b/arch/arm64/boot/dts/mediatek/mt6359.dtsi index 8e1b8c85c6ede..57af3e7899841 100644 --- a/arch/arm64/boot/dts/mediatek/mt6359.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt6359.dtsi @@ -18,6 +18,8 @@ }; regulators { + compatible = "mediatek,mt6359-regulator"; + mt6359_vs1_buck_reg: buck_vs1 { regulator-name = "vs1"; regulator-min-microvolt = <800000>; -- 2.39.5