From nobody Wed Dec 17 04:17:06 2025 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id BCA2AC32771 for ; Mon, 26 Sep 2022 12:09:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239346AbiIZMJs (ORCPT ); Mon, 26 Sep 2022 08:09:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45604 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235272AbiIZMIU (ORCPT ); Mon, 26 Sep 2022 08:08:20 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C683D7FE46; Mon, 26 Sep 2022 03:56:07 -0700 (PDT) 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 ams.source.kernel.org (Postfix) with ESMTPS id B72E6B802C5; Mon, 26 Sep 2022 10:47:14 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1331DC433D6; Mon, 26 Sep 2022 10:47:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1664189233; bh=bcAJ4z+RO/wsgHLdxnKwfFtoMvVcRDNQlF5P/39RL6M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bYR3a68FD1S7J8esMZBXW55QiK5HYKNxAluagndrglfo0Y0t3H5EeRG1drFkejFok Y10ZsRlzYLNnvMW6h4GVS0znoB2Img92kkEZTd4fuUq1ZLCntRkjYDflTUitBAFYWg CApDiUkfWA9kEFN6ySomlfY3qMQ7kkrwr7nEsq2s= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Horatiu Vultur , Claudiu Beznea , Sasha Levin Subject: [PATCH 5.19 100/207] ARM: dts: lan966x: Fix the interrupt number for internal PHYs Date: Mon, 26 Sep 2022 12:11:29 +0200 Message-Id: <20220926100811.060351218@linuxfoundation.org> X-Mailer: git-send-email 2.37.3 In-Reply-To: <20220926100806.522017616@linuxfoundation.org> References: <20220926100806.522017616@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Horatiu Vultur [ Upstream commit f5fc22cbbdcd349402faaddf1a07eb8403658ae8 ] According to the datasheet the interrupts for internal PHYs are 80 and 81. Fixes: 6ad69e07def67c ("ARM: dts: lan966x: add MIIM nodes") Signed-off-by: Horatiu Vultur Signed-off-by: Claudiu Beznea Link: https://lore.kernel.org/r/20220912192629.461452-1-horatiu.vultur@micr= ochip.com Signed-off-by: Sasha Levin --- arch/arm/boot/dts/lan966x.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/lan966x.dtsi b/arch/arm/boot/dts/lan966x.dtsi index 38e90a31d2dd..25c19f9d0a12 100644 --- a/arch/arm/boot/dts/lan966x.dtsi +++ b/arch/arm/boot/dts/lan966x.dtsi @@ -515,13 +515,13 @@ mdio1: mdio@e200413c { =20 phy0: ethernet-phy@1 { reg =3D <1>; - interrupts =3D ; + interrupts =3D ; status =3D "disabled"; }; =20 phy1: ethernet-phy@2 { reg =3D <2>; - interrupts =3D ; + interrupts =3D ; status =3D "disabled"; }; }; --=20 2.35.1