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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 945C4C433F5 for ; Thu, 21 Oct 2021 00:23:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7F230611CC for ; Thu, 21 Oct 2021 00:23:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232390AbhJUAZ6 (ORCPT ); Wed, 20 Oct 2021 20:25:58 -0400 Received: from mail.kernel.org ([198.145.29.99]:44158 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232042AbhJUAZA (ORCPT ); Wed, 20 Oct 2021 20:25:00 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 41ACC60FD8; Thu, 21 Oct 2021 00:22:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1634775765; bh=dkCvC7JcUp89D5pDIH6bpJMp72CkeTXg05qjoA65ybs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TD2dm9pD2pHSBBkr1d3YU+0CT4SO/A3gWln8DXHJxgQYG6DC4wo4oFYUXrYZO3t4G BnKE98v5E9JlnWce4mWDVel28dRkXdTEWNkLJeRhzFvKzyWxyexPqIxp9f76ST7goP D24y/5XAKVQFq+hXbjroz5aboLTaeIlkJPuIpgSwMEIo3AKt24JV3aMU/Bw0UxVZRt MbVAq3J4yv+K/peMLrHT70GZ3KN/XwFsaUPfNJppYqHpSdxlBBKJYmfInI7L0UacIN I0FMQinCp3DVhjuv1FagdTI8lgdKvecjzfAvtlMBU4so4aPRQwEk/7XHwkxv+RnIz0 7uc8ewFBusmpw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Herve Codina , "David S . Miller" , Sasha Levin , vireshk@kernel.org, shiraz.linux.kernel@gmail.com, robh+dt@kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org Subject: [PATCH AUTOSEL 5.4 04/11] ARM: dts: spear3xx: Fix gmac node Date: Wed, 20 Oct 2021 20:22:30 -0400 Message-Id: <20211021002238.1129482-4-sashal@kernel.org> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20211021002238.1129482-1-sashal@kernel.org> References: <20211021002238.1129482-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Herve Codina [ Upstream commit 6636fec29cdf6665bd219564609e8651f6ddc142 ] On SPEAr3xx, ethernet driver is not compatible with the SPEAr600 one. Indeed, SPEAr3xx uses an earlier version of this IP (v3.40) and needs some driver tuning compare to SPEAr600. The v3.40 IP support was added to stmmac driver and this patch fixes this issue and use the correct compatible string for SPEAr3xx Signed-off-by: Herve Codina Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- arch/arm/boot/dts/spear3xx.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/spear3xx.dtsi b/arch/arm/boot/dts/spear3xx.dtsi index f266b7b03482..cc88ebe7a60c 100644 --- a/arch/arm/boot/dts/spear3xx.dtsi +++ b/arch/arm/boot/dts/spear3xx.dtsi @@ -47,7 +47,7 @@ dma@fc400000 { }; gmac: eth@e0800000 { - compatible = "st,spear600-gmac"; + compatible = "snps,dwmac-3.40a"; reg = <0xe0800000 0x8000>; interrupts = <23 22>; interrupt-names = "macirq", "eth_wake_irq"; -- 2.33.0