From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 00B7F86334; Sat, 30 May 2026 18:46:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780166814; cv=none; b=m4aavdsmmYO14t4QzCmeX9lbhXwZtKQ0BX3FTaRueTC6P6eFR9QMOfDVv8wWZlC79SbOiRCQBGoXB0foZ6wqS1pTbWg4jsOrvUqUhOPE7fAsC4ad61UcIG5JTYmSYP+0zOGSPUM0+S2NIXGQngvgIbwFNGWUKrD1sk8g7xU5+i4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780166814; c=relaxed/simple; bh=uoKF8knCYI+mIdaY0XobhYQlYUYhN9VsJgFjhrc4HVE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iPjZPQTrwJ9uplGUibpFwle5eIs9sIuuyJrZCIVNKG1HmDbjFdTjs6mO/lu9IyIeeP2mzVzohuKj+Bluju/N0+E3TDUS6ksKA9lCdsw89SdfwcavLb1IDrziB61rOKIc8RMk/HgJr19+3h1xQTC9tbfEjtAA+yGKocE4ZKM4UI8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=b6BwCwtK; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="b6BwCwtK" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 43A371F00893; Sat, 30 May 2026 18:46:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1780166813; bh=Iwp7iA4WoBBd46eKYSe3FEbf+VHwaHLh3Gh+jTtvhLA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=b6BwCwtK+TGqm+8G2gEC3AnURxxj5JoMlJzdoya9TIX3ocaNg3QUoGz5h/tF+YjmF gO3rx0htVFrqBil7szOH/yHbOEvlDzpEV8yYfZE+o5BcIA9KYOOIdV5O6sEx5oUzuC 2yaI+fFxb4rc6xM+YidmLdMq/Beneliup+cbgSjg= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jun Yan , Martin Blumenstingl , Neil Armstrong , Sasha Levin Subject: [PATCH 5.10 442/589] arm64: dts: meson-gxl-p230: fix ethernet PHY interrupt number Date: Sat, 30 May 2026 18:05:23 +0200 Message-ID: <20260530160236.319659692@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260530160224.570625122@linuxfoundation.org> References: <20260530160224.570625122@linuxfoundation.org> User-Agent: quilt/0.69 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 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jun Yan [ Upstream commit 174a0ef3b33434f475c87e66f37980e39b73805a ] Correct the interrupt number assigned to the Realtek PHY in the p230 following the same logic as commit 3106507e1004 ("ARM64: dts: meson-gxm: fix q200 interrupt number"),as reported in [PATCH 0/2] Ethernet PHY interrupt improvements [1]. [1] https://lore.kernel.org/all/20171202214037.17017-1-martin.blumenstingl@googlemail.com/ Fixes: b94d22d94ad2 ("ARM64: dts: meson-gx: add external PHY interrupt on some platforms") Signed-off-by: Jun Yan Reviewed-by: Martin Blumenstingl Link: https://patch.msgid.link/20260330145111.115318-1-jerrysteve1101@gmail.com Signed-off-by: Neil Armstrong Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p230.dts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p230.dts b/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p230.dts index b2ab05c220903..67c952fe8abc1 100644 --- a/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p230.dts +++ b/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p230.dts @@ -86,7 +86,8 @@ external_phy: ethernet-phy@0 { reset-gpios = <&gpio GPIOZ_14 GPIO_ACTIVE_LOW>; interrupt-parent = <&gpio_intc>; - interrupts = <29 IRQ_TYPE_LEVEL_LOW>; + /* MAC_INTR on GPIOZ_15 */ + interrupts = <25 IRQ_TYPE_LEVEL_LOW>; eee-broken-1000t; }; }; -- 2.53.0