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 ECC421170E for ; Mon, 11 Sep 2023 14:29:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 42D17C433C8; Mon, 11 Sep 2023 14:29:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1694442579; bh=ndNe+vLgR9pUMLxASmAssrGbWMMzvapkPlFeMGHhgu4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EV4B1MKQfRsMtLvxDlmdNi6xI4G9zh5sbRTzezVUJmH6KRiXwNVt3Ull8MISLTnwO 3iTW+MlkA7WwLh8HKTMQs2iVybNwXuESb0Rxx73LSSMfgyaoEsQOBhSGWPD9LQ5lJ3 MG+xNB/Jtev6Vg9cfxRpbNlkAPmFbuiM8Cyy3Z6A= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Lin Yujun , Krzysztof Kozlowski , Linus Walleij , Arnd Bergmann , Sasha Levin Subject: [PATCH 6.4 075/737] ARM: dts: integrator: fix PCI bus dtc warnings Date: Mon, 11 Sep 2023 15:38:54 +0200 Message-ID: <20230911134652.610859863@linuxfoundation.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20230911134650.286315610@linuxfoundation.org> References: <20230911134650.286315610@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.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Lin Yujun [ Upstream commit 42ff49a1967af71772b264009659ce181f7d2d2a ] An warning is reported when allmodconfig is used to compile the kernel of the ARM architecture: arch/arm/boot/dts/arm/integratorap.dts:161.22-206.4: Warning (pci_bridge): /pciv3@62000000: node name is not "pci" or "pcie" Change the node name to pci to clear the build warning. Signed-off-by: Lin Yujun Reviewed-by: Krzysztof Kozlowski Signed-off-by: Linus Walleij Link: https://lore.kernel.org/r/20230811-versatile-dts-v6-6-v1-1-d8cb9d1947ed@linaro.org Signed-off-by: Arnd Bergmann Signed-off-by: Sasha Levin --- arch/arm/boot/dts/integratorap.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/integratorap.dts b/arch/arm/boot/dts/integratorap.dts index 5b52d75bc6bed..d9927d3181dce 100644 --- a/arch/arm/boot/dts/integratorap.dts +++ b/arch/arm/boot/dts/integratorap.dts @@ -158,7 +158,7 @@ valid-mask = <0x003fffff>; }; - pci: pciv3@62000000 { + pci: pci@62000000 { compatible = "arm,integrator-ap-pci", "v3,v360epc-pci"; device_type = "pci"; #interrupt-cells = <1>; -- 2.40.1