From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 4239412B176; Tue, 30 Apr 2024 11:02:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714474940; cv=none; b=AF6l68XR0sZcm0fVIlEDH0EPf6cP6S/vkNKxs2xRI5BHXVBap3otmbHsKEBN6Z0wEhUezrdyTr/cH3RiON/TtR/2sGmlonCSzUG45rIdcBotNEZeEskkomyv8qKsq1FH9F4WHDiOPb/wi5Tc8cIOF4mTJU2gwgyGEE1Xz1dIEPU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714474940; c=relaxed/simple; bh=Z5G67t5DrMJzbA1B2/vIowCOdUxC3TPzslA9H++X6CA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=eboIR6ARHEk04+yazpoQr+eNjQ1cgd17nMi7lSBbUL0yyeGCBhzSSpiKzyxw0LTSybAx17Wtacd+h2lAM9FllCwXS8ifPai7MM+ZeeXDBAR1v/HcqQw9tSU+1AyVvcJ6Qk+dh9anBiIuqNzUlqBgOPXbFlrINuxTyFD0+jwGD4c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hM5Uuk7H; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="hM5Uuk7H" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 88969C2BBFC; Tue, 30 Apr 2024 11:02:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1714474939; bh=Z5G67t5DrMJzbA1B2/vIowCOdUxC3TPzslA9H++X6CA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hM5Uuk7HBfpRUzEGKdo5kynFlCDGYYLUW2B3FpI1RNgDXw0ohpdNMU6YhGvEAks2v P/rHllA3u7hx8Pvr6azj3EQ0j++Hy8vdgykK/rNOmxC4pexFwlYCdB6vWQcVjtyE/8 QSDfAWCZPbx5yMG6OulVn/pGyUKt6R7ZQJLtzzXM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= , AngeloGioacchino Del Regno , Sasha Levin Subject: [PATCH 5.10 080/138] arm64: dts: mediatek: mt7622: fix ethernet controller "compatible" Date: Tue, 30 Apr 2024 12:39:25 +0200 Message-ID: <20240430103051.778519046@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240430103049.422035273@linuxfoundation.org> References: <20240430103049.422035273@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Rafał Miłecki [ Upstream commit 208add29ce5b7291f6c466e4dfd9cbf61c72888e ] Fix following validation error: arch/arm64/boot/dts/mediatek/mt7622-rfb1.dtb: ethernet@1b100000: compatible: ['mediatek,mt7622-eth', 'mediatek,mt2701-eth', 'syscon'] is too long from schema $id: http://devicetree.org/schemas/net/mediatek,net.yaml# (and other complains about wrong clocks). Fixes: 5f599b3a0bb8 ("arm64: dts: mt7622: add ethernet device nodes") Signed-off-by: Rafał Miłecki Reviewed-by: AngeloGioacchino Del Regno Link: https://lore.kernel.org/r/20240317221050.18595-4-zajec5@gmail.com Signed-off-by: AngeloGioacchino Del Regno Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/mediatek/mt7622.dtsi | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/arch/arm64/boot/dts/mediatek/mt7622.dtsi b/arch/arm64/boot/dts/mediatek/mt7622.dtsi index bf0856d37eda8..974520bd3d8fb 100644 --- a/arch/arm64/boot/dts/mediatek/mt7622.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt7622.dtsi @@ -934,9 +934,7 @@ }; eth: ethernet@1b100000 { - compatible = "mediatek,mt7622-eth", - "mediatek,mt2701-eth", - "syscon"; + compatible = "mediatek,mt7622-eth"; reg = <0 0x1b100000 0 0x20000>; interrupts = , , -- 2.43.0