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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 2713CC25B74 for ; Tue, 21 May 2024 21:34:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=cR1R/SosGPSe2A2kl2WmTpSeKwNUKW2oTO6sEsLfVk8=; b=jzY2ZM85KbEw5O xThYm4WCYAlEWqZIGuwwh23udg8FDGW8coDgQK9UX7XR7o+r3EXOv3BsRgWXybH864dstXXS/lYVW bYWEH0rIeG2nG07jQ/kCTju1b0M/rseXrLhU9CudFLDxtNjEuUCyWW69yZ8jVZxpXHJWA11uuq1KF 6vajZGBCVfhII2YVS80o6XXsVVUd+99ZpqXaiE+JToUlKeDPZ77hdC+3lhNahJuVb559h64GiLbDK 56jEGDbBtJ09aXoeKoMxnOjUQ9e9o7VyPRDbTVG0xFH+QRAOz6LeftZv1vXLszQGsYvnuiWAGFUII jrfd2ifdaNrkdamwVZMA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1s9X8A-00000001Aqj-1484; Tue, 21 May 2024 21:34:46 +0000 Received: from gloria.sntech.de ([185.11.138.130]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1s9X87-00000001AqE-2sPS; Tue, 21 May 2024 21:34:45 +0000 Received: from i53875abf.versanet.de ([83.135.90.191] helo=diego.localnet) by gloria.sntech.de with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1s9X7d-0004Ld-Cj; Tue, 21 May 2024 23:34:13 +0200 From: Heiko =?ISO-8859-1?Q?St=FCbner?= To: Rob Herring , Krzysztof Kozlowski , Conor Dooley , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Alexandre Torgue , Giuseppe Cavallaro , Jose Abreu , Tobias Schramm , Jonas Karlman Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org, Jonas Karlman , netdev@vger.kernel.org Subject: Re: [PATCH 01/13] dt-bindings: net: rockchip-dwmac: Fix rockchip,rk3308-gmac compatible Date: Tue, 21 May 2024 23:34:12 +0200 Message-ID: <2389630.NG923GbCHz@diego> In-Reply-To: <20240521211029.1236094-2-jonas@kwiboo.se> References: <20240521211029.1236094-1-jonas@kwiboo.se> <20240521211029.1236094-2-jonas@kwiboo.se> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240521_143443_762736_3E921C62 X-CRM114-Status: GOOD ( 17.74 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Am Dienstag, 21. Mai 2024, 23:10:04 CEST schrieb Jonas Karlman: > Schema validation using rockchip,rk3308-gmac compatible fails with: > > ethernet@ff4e0000: compatible: ['rockchip,rk3308-gmac'] does not contain items matching the given schema > from schema $id: http://devicetree.org/schemas/net/rockchip-dwmac.yaml# > ethernet@ff4e0000: Unevaluated properties are not allowed ('interrupt-names', 'interrupts', 'phy-mode', > 'reg', 'reset-names', 'resets', 'snps,reset-active-low', 'snps,reset-delays-us', > 'snps,reset-gpio' were unexpected) > from schema $id: http://devicetree.org/schemas/net/rockchip-dwmac.yaml# > > Add rockchip,rk3308-gmac to snps,dwmac.yaml to fix DT schema validation. > > Fixes: 2cc8c910f515 ("dt-bindings: net: rockchip-dwmac: add rk3308 gmac compatible") > Signed-off-by: Jonas Karlman Reviewed-by: Heiko Stuebner I'm not sure how the network tree works these days, but this patch is the only one that should go through the network tree. > --- > Documentation/devicetree/bindings/net/snps,dwmac.yaml | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/Documentation/devicetree/bindings/net/snps,dwmac.yaml b/Documentation/devicetree/bindings/net/snps,dwmac.yaml > index 21cc27e75f50..3bab4e1f3fbf 100644 > --- a/Documentation/devicetree/bindings/net/snps,dwmac.yaml > +++ b/Documentation/devicetree/bindings/net/snps,dwmac.yaml > @@ -76,6 +76,7 @@ properties: > - rockchip,rk3128-gmac > - rockchip,rk3228-gmac > - rockchip,rk3288-gmac > + - rockchip,rk3308-gmac > - rockchip,rk3328-gmac > - rockchip,rk3366-gmac > - rockchip,rk3368-gmac > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel