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 C24DCC433EF for ; Fri, 8 Apr 2022 12:42:40 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id E888A83DCA; Fri, 8 Apr 2022 14:41:56 +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="fNTEwYqU"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id AFB0383A3A; Fri, 8 Apr 2022 14:41:42 +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 0B6CA83D0F for ; Fri, 8 Apr 2022 14:41:34 +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 D763F62107; Fri, 8 Apr 2022 12:41:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 299A0C385A3; Fri, 8 Apr 2022 12:41:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1649421692; bh=1tov1yyncj/12wUmLfIjINyVHEHcPSkwalD/dMVSy4g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fNTEwYqUSIWZtmD+ZT4nsQBGVsctGIDY5AZVbjhPpwBnU47RQAeqz7pIY5UHkYVwI 6RAgXCJuJqA0d/vIAv+wlUg0HTuBGlc7k/Z6LVDi7LnvJjTe2xJso08kdMG3lay4lq uikHidZ+x5l72poAXdf7F0JcOHozH9t6T/F+JjGcrl8TzWS4c+v8B8mlJR6NTgCCOh 1S7c6zfg1LxZsLeOKPz3XAywcHqcAuEvzLnvIGFmJOv2evdPaAkvHkupTek4/rtdTt c4kj3uSDOe+gYwo9y9PckxqjkVk48xY32YJ15R1ogpdbvFVvVdkF5UqwOtfLboFf10 WECyTzTfA00CQ== Received: by pali.im (Postfix) id D586D6D7; Fri, 8 Apr 2022 14:41:31 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Priyanka Jain , Wolfgang Denk , Sinan Akman Cc: u-boot@lists.denx.de Subject: [PATCH 6/9] powerpc: dts: p2020: Add missing interrupts property to spi@7000 node Date: Fri, 8 Apr 2022 14:39:55 +0200 Message-Id: <20220408123958.25724-7-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220408123958.25724-1-pali@kernel.org> References: <20220408123958.25724-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.5 at phobos.denx.de X-Virus-Status: Clean interrupts property for spi@7000 node is needed for compatibility with Linux kernel. Signed-off-by: Pali Rohár --- arch/powerpc/dts/p2020-post.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/powerpc/dts/p2020-post.dtsi b/arch/powerpc/dts/p2020-post.dtsi index 248b504b8fc4..2135710ccc3a 100644 --- a/arch/powerpc/dts/p2020-post.dtsi +++ b/arch/powerpc/dts/p2020-post.dtsi @@ -44,6 +44,7 @@ #address-cells = <1>; #size-cells = <0>; reg = <0x7000 0x1000>; + interrupts = < 0x3b 0x02 0x00 0x00 >; fsl,espi-num-chipselects = <4>; }; -- 2.20.1