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 B2F2328EB for ; Mon, 30 Jan 2023 13:54:11 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 265CFC4339B; Mon, 30 Jan 2023 13:54:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1675086851; bh=hKJmJhD1xtAkPmNDmMbLjXX3s1IvUv4E/amn+7+KCHQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=xqT3nj33oClTzSSc5Ov45UYnp2rGkYagHCvymXcTbh4tDDjFoVJ7KOX8tce11GGi5 WTluVMZ2m0VuwKQiRlFM1lp1JydsWIRLcg6gHJraYUWPJ2p/38oNlVbnkAaRWQHysO C23nSOGV26pp3q7ShFT3v3m41RYekQ/vOzF2KnRE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Adam Ford , Laurent Pinchart , Shawn Guo , Sasha Levin Subject: [PATCH 6.1 019/313] arm64: dts: imx8mp: Fix power-domain typo Date: Mon, 30 Jan 2023 14:47:34 +0100 Message-Id: <20230130134337.549255520@linuxfoundation.org> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230130134336.532886729@linuxfoundation.org> References: <20230130134336.532886729@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Adam Ford [ Upstream commit 10e2f328bd900787fd2db24e474f87e1d525ccc4 ] dt_binding_check detects an issue with the pgc_hsiomix power domain: pgc: 'power-domains@17' does not match any of the regexes This is because 'power-domains' should be 'power-domain' Fixes: 2ae42e0c0b67 ("arm64: dts: imx8mp: add HSIO power-domains") Signed-off-by: Adam Ford Reviewed-by: Laurent Pinchart Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/freescale/imx8mp.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/freescale/imx8mp.dtsi b/arch/arm64/boot/dts/freescale/imx8mp.dtsi index 4d06bb707a02..47fd6a0ba05a 100644 --- a/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mp.dtsi @@ -590,7 +590,7 @@ pgc_mipi_phy2: power-domain@16 { reg = ; }; - pgc_hsiomix: power-domains@17 { + pgc_hsiomix: power-domain@17 { #power-domain-cells = <0>; reg = ; clocks = <&clk IMX8MP_CLK_HSIO_AXI>, -- 2.39.0