Message ID | 20250331110659.252237-6-tommaso.merciai.xr@bp.renesas.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Add RZ/G3E pinctrl support | expand |
Hi! > commit 13dcd63dc704b33a8ad94f1d161c0f5dad243a5b upstream. > > Define `RZG2L_SINGLE_PIN` at the top of the file to clarify its use for > dedicated pins for improved readability. > > While at it update the comment for `RZG2L_SINGLE_PIN_PACK` macro and place > it just above the macro for clarity. Changelog no longer matches the patch. > diff --git a/drivers/pinctrl/renesas/pinctrl-rzg2l.c b/drivers/pinctrl/renesas/pinctrl-rzg2l.c > index 5081c7d8064fa..b47f0f1257cff 100644 > --- a/drivers/pinctrl/renesas/pinctrl-rzg2l.c > +++ b/drivers/pinctrl/renesas/pinctrl-rzg2l.c > @@ -65,6 +65,8 @@ > #define RZG2L_SINGLE_PIN BIT_ULL(63) /* Dedicated pin */ > #define RZG2L_VARIABLE_CFG BIT_ULL(62) /* Variable cfg for port pins */ > > +#define RZG2L_SINGLE_PIN BIT_ULL(63) /* Dedicated pin */ > + And the patch was already applied, see the previous defines. I believe we can just drop this one safely. Best regards, Pavel
Hi Pavel, Thanks for your review. On Tue, Apr 01, 2025 at 12:26:19PM +0200, Pavel Machek wrote: > Hi! > > > commit 13dcd63dc704b33a8ad94f1d161c0f5dad243a5b upstream. > > > > Define `RZG2L_SINGLE_PIN` at the top of the file to clarify its use for > > dedicated pins for improved readability. > > > > While at it update the comment for `RZG2L_SINGLE_PIN_PACK` macro and place > > it just above the macro for clarity. > > Changelog no longer matches the patch. > > > diff --git a/drivers/pinctrl/renesas/pinctrl-rzg2l.c b/drivers/pinctrl/renesas/pinctrl-rzg2l.c > > index 5081c7d8064fa..b47f0f1257cff 100644 > > --- a/drivers/pinctrl/renesas/pinctrl-rzg2l.c > > +++ b/drivers/pinctrl/renesas/pinctrl-rzg2l.c > > @@ -65,6 +65,8 @@ > > #define RZG2L_SINGLE_PIN BIT_ULL(63) /* Dedicated pin */ > > #define RZG2L_VARIABLE_CFG BIT_ULL(62) /* Variable cfg for port pins */ > > > > +#define RZG2L_SINGLE_PIN BIT_ULL(63) /* Dedicated pin */ > > + > > And the patch was already applied, see the previous defines. I believe > we can just drop this one safely. Agreed. I've done a test on my side. We can just drop this one safely. Thanks, Tommaso > > Best regards, > Pavel > -- > DENX Software Engineering GmbH, Managing Director: Erika Unter > HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
diff --git a/drivers/pinctrl/renesas/pinctrl-rzg2l.c b/drivers/pinctrl/renesas/pinctrl-rzg2l.c index 5081c7d8064fa..b47f0f1257cff 100644 --- a/drivers/pinctrl/renesas/pinctrl-rzg2l.c +++ b/drivers/pinctrl/renesas/pinctrl-rzg2l.c @@ -65,6 +65,8 @@ #define RZG2L_SINGLE_PIN BIT_ULL(63) /* Dedicated pin */ #define RZG2L_VARIABLE_CFG BIT_ULL(62) /* Variable cfg for port pins */ +#define RZG2L_SINGLE_PIN BIT_ULL(63) /* Dedicated pin */ + #define RZG2L_MPXED_COMMON_PIN_FUNCS(group) \ (PIN_CFG_IOLH_##group | \ PIN_CFG_PUPD | \