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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1DBC3CDB474 for ; Thu, 12 Oct 2023 20:39:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1343782AbjJLUjt (ORCPT ); Thu, 12 Oct 2023 16:39:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52438 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344197AbjJLUjs (ORCPT ); Thu, 12 Oct 2023 16:39:48 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 10C71CA; Thu, 12 Oct 2023 13:39:47 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9DFF8C433C7; Thu, 12 Oct 2023 20:39:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1697143186; bh=YJviJ9TTXMty5MqtVYmE4vtdJQJkkUbztuRoWP9UlcY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=at49mz3jeCld/u54898zJStVhF4+Y+EwX4Yb22QzIgeQvAcezYRKVRa5Kv4u8DelW hP1PsSWyh3/Xh6l+OBU3PEk8vVwnXTy9N2d+i9O+pQEn0IafYIff1EOg6pubdT/wKU c65SiUTcwippzl3SMLiCrYCCxKLYt1mVeZ3wABsHN4XXgmyjpCgA0EgzeCAcibkarJ 9bvAafoc3N+AgFhuMi+SAtFoC/xe2XJKd6U5zSJMjWKTW7NgJ5Dw6Bj0/f/gUEk+vJ 4iE4jkwsXwS+WUBlS+cZ5EOB4nKitm2YG1peZ+F2kXqqLtrhI99KDcNa+ctCC1pD2k eZpCZMiSkyQBA== Received: (nullmailer pid 1703831 invoked by uid 1000); Thu, 12 Oct 2023 20:39:44 -0000 Date: Thu, 12 Oct 2023 15:39:44 -0500 From: Rob Herring To: Jacky Huang Cc: linus.walleij@linaro.org, krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org, p.zabel@pengutronix.de, j.neuschaefer@gmx.net, linux-arm-kernel@lists.infradead.org, linux-gpio@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, schung@nuvoton.com, Jacky Huang Subject: Re: [PATCH 1/4] dt-bindings: reset: Add syscon to nuvoton ma35d1 system-management node Message-ID: <20231012203944.GA1699468-robh@kernel.org> References: <20231011090510.114476-1-ychuang570808@gmail.com> <20231011090510.114476-2-ychuang570808@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231011090510.114476-2-ychuang570808@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org On Wed, Oct 11, 2023 at 09:05:07AM +0000, Jacky Huang wrote: > From: Jacky Huang > > Add compatible 'syscon' to the system-management node. > > Signed-off-by: Jacky Huang > --- > .../devicetree/bindings/reset/nuvoton,ma35d1-reset.yaml | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/reset/nuvoton,ma35d1-reset.yaml b/Documentation/devicetree/bindings/reset/nuvoton,ma35d1-reset.yaml > index 34c5c1c08ec1..3ce7dcecd87a 100644 > --- a/Documentation/devicetree/bindings/reset/nuvoton,ma35d1-reset.yaml > +++ b/Documentation/devicetree/bindings/reset/nuvoton,ma35d1-reset.yaml > @@ -18,6 +18,7 @@ properties: > compatible: > items: > - const: nuvoton,ma35d1-reset > + - const: syscon Presumably you already have a driver for nuvoton,ma35d1-reset, so just make it create a regmap. I assume this is the reason you want to add 'syscon'? Rob