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 X-Spam-Level: X-Spam-Status: No, score=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 727A3C43462 for ; Mon, 19 Apr 2021 06:24:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4CAF561104 for ; Mon, 19 Apr 2021 06:24:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237468AbhDSGZI (ORCPT ); Mon, 19 Apr 2021 02:25:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51654 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229840AbhDSGZG (ORCPT ); Mon, 19 Apr 2021 02:25:06 -0400 Received: from canardo.mork.no (canardo.mork.no [IPv6:2001:4641::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 38460C061760; Sun, 18 Apr 2021 23:24:37 -0700 (PDT) Received: from miraculix.mork.no (fwa161.mork.no [192.168.9.161]) (authenticated bits=0) by canardo.mork.no (8.15.2/8.15.2) with ESMTPSA id 13J6OA33005567 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Mon, 19 Apr 2021 08:24:10 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mork.no; s=b; t=1618813450; bh=E7X1Z/C7m4uTr61eYxZTSepR9nL5wv+XsO96GsmyN1o=; h=From:To:Cc:Subject:References:Date:Message-ID:From; b=Ik288FpI4+tP3NUif79juWd79WI9mF6EwixRHDNl9pM365SLN/2YUjFGhP517DrAq iLKyA9hXRV4N1CNtUMM0qq9onUb9jv5Jpf3XyXpHfg8L0Qpk+MtZXnF0Otd1cyAcmB tak3jj60+xS63bbFXtSk0SkE9+bzRGtYPXIk7s6M= Received: from bjorn by miraculix.mork.no with local (Exim 4.94) (envelope-from ) id 1lYNKL-000bQN-NA; Mon, 19 Apr 2021 08:24:09 +0200 From: =?utf-8?Q?Bj=C3=B8rn_Mork?= To: Ilya Lipnitskiy Cc: "David S. Miller" , Jakub Kicinski , Rob Herring , Matthias Brugger , Greg Ungerer , Florian Fainelli , Sean Wang , netdev@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org Subject: Re: [PATCH] dt-bindings: net: mediatek: support MT7621 SoC Organization: m References: <20210419034253.21322-1-ilya.lipnitskiy@gmail.com> Date: Mon, 19 Apr 2021 08:24:09 +0200 In-Reply-To: <20210419034253.21322-1-ilya.lipnitskiy@gmail.com> (Ilya Lipnitskiy's message of "Sun, 18 Apr 2021 20:42:53 -0700") Message-ID: <878s5e94hi.fsf@miraculix.mork.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: clamav-milter 0.102.4 at canardo X-Virus-Status: Clean Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Ilya Lipnitskiy writes: > Add missing binding documentation for SoC support that has been in place > since v5.1 > > Fixes: 889bcbdeee57 ("net: ethernet: mediatek: support MT7621 SoC etherne= t hardware") > Cc: Bj=C3=B8rn Mork > Signed-off-by: Ilya Lipnitskiy > --- > Documentation/devicetree/bindings/net/mediatek-net.txt | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/Documentation/devicetree/bindings/net/mediatek-net.txt b/Doc= umentation/devicetree/bindings/net/mediatek-net.txt > index 72d03e07cf7c..950ef6af20b1 100644 > --- a/Documentation/devicetree/bindings/net/mediatek-net.txt > +++ b/Documentation/devicetree/bindings/net/mediatek-net.txt > @@ -10,6 +10,7 @@ Required properties: > - compatible: Should be > "mediatek,mt2701-eth": for MT2701 SoC > "mediatek,mt7623-eth", "mediatek,mt2701-eth": for MT7623 SoC > + "mediatek,mt7621-eth": for MT7621 SoC > "mediatek,mt7622-eth": for MT7622 SoC > "mediatek,mt7629-eth": for MT7629 SoC > "ralink,rt5350-eth": for Ralink Rt5350F and MT7628/88 SoC Thanks for taking care of this! Note, however, that this compatible value is defined in Documentation/devicetree/bindings/net/ralink,rt2880-net.txt I believe that file should go away. These two files are both documenting the same compatible property AFAICS. Bj=C3=B8rn