From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-19.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5306EC433B4 for ; Fri, 9 Apr 2021 07:33:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2B56961025 for ; Fri, 9 Apr 2021 07:33:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231818AbhDIHdS (ORCPT ); Fri, 9 Apr 2021 03:33:18 -0400 Received: from mail.kernel.org ([198.145.29.99]:54080 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229621AbhDIHdQ (ORCPT ); Fri, 9 Apr 2021 03:33:16 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id D204061107; Fri, 9 Apr 2021 07:33:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1617953583; bh=GpkQILVYiC09Ip8zqjS9RHquSeBdjqJpZ9Hi15ftwNE=; h=From:To:Cc:Subject:Date:From; b=GVPF5apRWN7oCDiWFjYyPFko6zdr6xX3XK4rwUFd7YAXRiRSqhVsD4GL8nFXfgkW4 ainwWuVLMHbzoEzSeYaF2px6m04oJByx5Y5vv9BsBg6cpGj4ZCqnIlPnNAbBTSaZ8U 45oCgCR8JqQlg36a4aDD3UvTwIzBYGmmNksUVm12nBgSKDuKEl80Pkq32fJa5Zwmcb jxVgvR/pjJ6/Ba9i+F53/9L3dC819d4iGfLKSmYyGLyhx1YeDcWk0aJRK4aTrALSp4 uzj9vogYIqRJbwXynEO2EDTR6iRAqBOdzw0hNtla4bjV3YUkXhtY45+IZNxjLUd9Wd E4BarMzVM+NbQ== From: Arnd Bergmann To: Gregory Clement , Chris Packham , Aryan Srivastava Cc: Arnd Bergmann , Stephen Rothwell , "kernelci . org bot" , Andrew Lunn , Sebastian Hesselbarth , Rob Herring , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] ARM: dts: mvebu: fix SPI device node Date: Fri, 9 Apr 2021 09:32:26 +0200 Message-Id: <20210409073252.1764731-1-arnd@kernel.org> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Arnd Bergmann dtc warns about a mismatched address: arch/arm/boot/dts/armada-385-atl-x530.dts:171.14-199.4: Warning (spi_bus_reg): /soc/spi@10680/spi-flash@0: SPI bus unit address format error, expected "1" I assume the "reg" property is correct here, so adjust the unit address accordingly. Fixes: c6dfc019c239 ("ARM: dts: mvebu: Add device tree for ATL-x530 Board") Reported-by: Stephen Rothwell Reported-by: kernelci.org bot Signed-off-by: Arnd Bergmann --- I applied this fixup to the arm/dt branch on top of the new file, this will be part of linux-next and the v5.13 pull request arch/arm/boot/dts/armada-385-atl-x530.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/armada-385-atl-x530.dts b/arch/arm/boot/dts/armada-385-atl-x530.dts index 2041bf09c578..ed3f41c7df71 100644 --- a/arch/arm/boot/dts/armada-385-atl-x530.dts +++ b/arch/arm/boot/dts/armada-385-atl-x530.dts @@ -168,7 +168,7 @@ &spi1 { pinctrl-0 = <&spi1_pins>; status = "okay"; - spi-flash@0 { + spi-flash@1 { #address-cells = <1>; #size-cells = <1>; compatible = "jedec,spi-nor"; -- 2.29.2