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 Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9DBEFC19F28 for ; Wed, 3 Aug 2022 11:02:04 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id E6FFF8453E; Wed, 3 Aug 2022 13:01:40 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="KkOtKjNt"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 221518449C; Wed, 3 Aug 2022 13:01:35 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 7F4888451D for ; Wed, 3 Aug 2022 13:01:28 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 727B461008; Wed, 3 Aug 2022 11:01:27 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AB090C433D7; Wed, 3 Aug 2022 11:01:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1659524486; bh=qon/7U3H2jzt0tHeI5qjLNfsVk2x8yRxcgeoaz5PEOc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KkOtKjNt68zHE0uL60H4F/V5v6V/j5AJ92EawcdxTFfJH/NOJdlJmji+3wi0IoiFd Amzd1T4jA0GYAE476GOKXpxWFVxLQAf3WcdHeidd/eGSdC7jVeYB8tJBwxkroCDXmb sNc2jXzmhLLj+4AvIrCCy3/BY/aJ28UY7E2d6+Qzg8MGDx11xV5DWqcgIEP4i/swNd qU3RCtrEzgAVTULIfEikSmc4nkPjZ6JWYjkNiqFJdCHG9iocImnFpOb+F5A5kc3nnG XeZR2cxc2Kf982ehQL7hWd1Y0dqReJY1xCFk0STMOxB5vN/5WfCCz8K8gewJHPkFHf A65uytGUBtD6g== Received: by pali.im (Postfix) id A6D70830; Wed, 3 Aug 2022 13:01:23 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Stefan Roese , Tony Dinh Cc: =?UTF-8?q?Marek=20Beh=C3=BAn?= , Luka Kovacic , Luka Perkov , Robert Marko , Michael Trimarchi , Mark Kettenis , Simon Glass , Jaehoon Chung , u-boot@lists.denx.de Subject: [PATCH 1/5] arm: mvebu: a7040/a8040/cn9130: Add spi0 dts reference Date: Wed, 3 Aug 2022 13:00:49 +0200 Message-Id: <20220803110053.22598-2-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220803110053.22598-1-pali@kernel.org> References: <20220803110053.22598-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean For future changes it is needed for have spi0 device tree reference in every mvebu soc dts file even when it is unused. Signed-off-by: Pali Rohár --- arch/arm/dts/armada-7040.dtsi | 3 +++ arch/arm/dts/armada-8040.dtsi | 3 +++ arch/arm/dts/cn9130.dtsi | 3 +++ 3 files changed, 9 insertions(+) diff --git a/arch/arm/dts/armada-7040.dtsi b/arch/arm/dts/armada-7040.dtsi index 039d30c72a8c..1fb21c6bfde0 100644 --- a/arch/arm/dts/armada-7040.dtsi +++ b/arch/arm/dts/armada-7040.dtsi @@ -63,3 +63,6 @@ marvell,function = <3>; }; }; + +spi0: &cp0_spi1 { +}; diff --git a/arch/arm/dts/armada-8040.dtsi b/arch/arm/dts/armada-8040.dtsi index eec5fa277405..608ff0d97f95 100644 --- a/arch/arm/dts/armada-8040.dtsi +++ b/arch/arm/dts/armada-8040.dtsi @@ -87,3 +87,6 @@ marvell,function = <3>; }; }; + +spi0: &cp1_spi1 { +}; diff --git a/arch/arm/dts/cn9130.dtsi b/arch/arm/dts/cn9130.dtsi index 68b767a70639..a200276f7a2e 100644 --- a/arch/arm/dts/cn9130.dtsi +++ b/arch/arm/dts/cn9130.dtsi @@ -71,3 +71,6 @@ marvell,function = <3>; }; }; + +spi0: &cp0_spi1 { +}; -- 2.20.1