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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 05CA2C433FE for ; Sun, 2 Jan 2022 06:39:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232080AbiABGjG (ORCPT ); Sun, 2 Jan 2022 01:39:06 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49760 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230374AbiABGjF (ORCPT ); Sun, 2 Jan 2022 01:39:05 -0500 Received: from mail-lf1-x12c.google.com (mail-lf1-x12c.google.com [IPv6:2a00:1450:4864:20::12c]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E775AC061574 for ; Sat, 1 Jan 2022 22:39:04 -0800 (PST) Received: by mail-lf1-x12c.google.com with SMTP id i31so68537531lfv.10 for ; Sat, 01 Jan 2022 22:39:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=0NN21CO30QOaTaxAaJ5AbktneIROV++1RQZxhix79+U=; b=adwQ4yB1OiKycYPbmmGYpHgLqc0ghoGRjpPAhnGN2+0uyGUIMEBZvab1LKKPwJDVqW 5d83q3P0SM60Frn7aH6dM30K4yipJayJVqVJmpv6Vrfa3rXUQ9fWlKOZEbApoDnhodnb H07RP7+ImBk/O6IX1UeDumV4fuQ1UzFrYddM3/C+WdbHcCRjEvN/Rd6IgtJEF1yf1sV6 jGKxMZhW/qckY+BRymxWtjmvOKMzr4ObssWKrf5goFNA52l/V84q/J45o7GYUz13FwbT mbxs3UwHvKqXcXLOhJrjWcPXpRfGV6YXZUGrDnBNbaCNDsceMxp3zrCpT/ZtzWKKcPj4 nlYA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=0NN21CO30QOaTaxAaJ5AbktneIROV++1RQZxhix79+U=; b=IXTDmWJ9wL1NzJeiN1blHIKM3iJp2Vqdbvi92VooOjr7jwfUAbsypzhwTFOHUcqgRQ ltwkyRc25/4p3B9MSkF0b65luuOyURtkkCkn5YwK0wbNfC91h6Zneu7JXajnGIRFs9hY z2h/HfXNAZK1wvPzI4w83zvcKwWiLhW2RR4aFPNMamef9ABaa/sYeCNLXZ5W8drnTdFW uflVhEvNwy9Auq7Dwy6BAEOQvT8J7auqRNkNbENrc7yZFMsClXad3bo7mXmbFztkL29W MpRIzZ6qP/kgtKa8E4aYmaagwB0+cq6W99BrkaOwqI2Uwb6R9Qa4yqQhY+iCu5a0FaJ/ 2qiQ== X-Gm-Message-State: AOAM5324EKvARW9QwJYxG/wkv8MkG80rZ9EUz0uA+DnlmDmyJvIdImiH cOJ2NRpmX5G/AGAgbYFUg4x/h8i5lngqQCX828hrUg== X-Google-Smtp-Source: ABdhPJxo5GKtHTR8DNorJV6j4esL9GMgX6B7y0bciBPzP+HmNAh2eTWi+R6vc3Ty73naclRWJTDzE9rbaaiBM2qJo6M= X-Received: by 2002:a05:6512:2303:: with SMTP id o3mr36857827lfu.362.1641105543253; Sat, 01 Jan 2022 22:39:03 -0800 (PST) MIME-Version: 1.0 References: <20211228072645.32341-1-luizluca@gmail.com> In-Reply-To: <20211228072645.32341-1-luizluca@gmail.com> From: Linus Walleij Date: Sun, 2 Jan 2022 07:38:50 +0100 Message-ID: Subject: Re: [PATCH] dt-bindings: net: dsa: realtek-smi: convert to YAML schema To: Luiz Angelo Daros de Luca Cc: devicetree@vger.kernel.org, Arnd Bergmann , Olof Johansson , =?UTF-8?B?QXLEsW7DpyDDnE5BTA==?= , Florian Fainelli , Stephen Rothwell , Andrew Lunn , Vivien Didelot , Vladimir Oltean , "David S . Miller" , Jakub Kicinski , Rob Herring , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 28, 2021 at 8:27 AM Luiz Angelo Daros de Luca wrote: > Schema changes: > > - "interrupt-controller" was not added as a required property. It might > still work polling the ports when missing > - "interrupt" property was mentioned but never used. According to its > description, it was assumed it was really "interrupt-parent" > > Examples changes: > > - renamed "switch_intc" to make it unique between examples > - removed "dsa-mdio" from mdio compatible property > - renamed phy@0 to ethernet-phy@0 (not tested with real HW) > phy@ requires #phy-cells > > Signed-off-by: Luiz Angelo Daros de Luca Thanks for doing this! Very nice! > +maintainers: > + - Linus Walleij You can add yourself too (if you want) > + description: | > + realtek,rtl8365mb: 4+1 ports > + realtek,rtl8366: > + realtek,rtl8366rb: 4 + 1 ports With that fix: Reviewed-by: Linus Walleij Yours, Linus Walleij