From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Herring Subject: Re: [PATCH 5/6] dt-bindings: pinctrl: k3: Introduce pinmux definitions for J721E Date: Wed, 21 Aug 2019 16:02:32 -0500 Message-ID: <20190821210232.GA22578@bogus> References: <20190809082947.30590-1-lokeshvutla@ti.com> <20190809082947.30590-6-lokeshvutla@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <20190809082947.30590-6-lokeshvutla@ti.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Lokesh Vutla Cc: Nishanth Menon , Device Tree Mailing List , Keerthy , linus.walleij@linaro.org, Tero Kristo , linux-gpio@vger.kernel.org, Linux ARM Mailing List List-Id: devicetree@vger.kernel.org On Fri, Aug 09, 2019 at 01:59:46PM +0530, Lokesh Vutla wrote: > Add pinctrl macros for J721E SoC. These macro definitions are > similar to that of AM6, but adding new definitions to avoid > any naming confusions in the soc dts files. > > Acked-by: Nishanth Menon > Signed-off-by: Lokesh Vutla > Signed-off-by: Vignesh Raghavendra > --- > include/dt-bindings/pinctrl/k3.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/include/dt-bindings/pinctrl/k3.h b/include/dt-bindings/pinctrl/k3.h > index 45e11b6170ca..499de6216581 100644 > --- a/include/dt-bindings/pinctrl/k3.h > +++ b/include/dt-bindings/pinctrl/k3.h > @@ -32,4 +32,7 @@ > #define AM65X_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) > #define AM65X_WKUP_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) > > +#define J721E_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) > +#define J721E_WKUP_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) checkpatch reports a parentheses error: (((pa) & 0x1fff) ((val) | (muxmode))) > + > #endif > -- > 2.22.0 >