linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pinctrl: sh-pfc: r8a7795: Make PORT_GP_x() macros consistent
@ 2015-10-29 19:39 Geert Uytterhoeven
  2015-10-30 14:07 ` Linus Walleij
  2015-10-30 14:24 ` Laurent Pinchart
  0 siblings, 2 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2015-10-29 19:39 UTC (permalink / raw)
  To: Laurent Pinchart, Linus Walleij, Kuninori Morimoto
  Cc: linux-sh, linux-gpio, Geert Uytterhoeven

On r8a7795, PORT_GP_x() is a macro for defining GPIOs 0..x.
In all other sh-pfc code, PORT_GP_x() is a macro for defining GPIOs
0..(x-1).

Make the r8a7795 macro definitions consistent with the rest of the
sh-pfc codebase.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/pinctrl/sh-pfc/pfc-r8a7795.c | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7795.c b/drivers/pinctrl/sh-pfc/pfc-r8a7795.c
index 7ddb2adfc5a53d7b..29d001b8a727e154 100644
--- a/drivers/pinctrl/sh-pfc/pfc-r8a7795.c
+++ b/drivers/pinctrl/sh-pfc/pfc-r8a7795.c
@@ -13,12 +13,12 @@
 #include "core.h"
 #include "sh_pfc.h"
 
-#define PORT_GP_3(bank, fn, sfx)					\
+#define PORT_GP_4(bank, fn, sfx)					\
 	PORT_GP_1(bank, 0,  fn, sfx), PORT_GP_1(bank, 1,  fn, sfx),	\
 	PORT_GP_1(bank, 2,  fn, sfx), PORT_GP_1(bank, 3,  fn, sfx)
 
-#define PORT_GP_14(bank, fn, sfx)					\
-	PORT_GP_3(bank, fn, sfx),					\
+#define PORT_GP_15(bank, fn, sfx)					\
+	PORT_GP_4(bank, fn, sfx),					\
 	PORT_GP_1(bank, 4,  fn, sfx), PORT_GP_1(bank, 5,  fn, sfx),	\
 	PORT_GP_1(bank, 6,  fn, sfx), PORT_GP_1(bank, 7,  fn, sfx),	\
 	PORT_GP_1(bank, 8,  fn, sfx), PORT_GP_1(bank, 9,  fn, sfx),	\
@@ -26,33 +26,33 @@
 	PORT_GP_1(bank, 12, fn, sfx), PORT_GP_1(bank, 13, fn, sfx),	\
 	PORT_GP_1(bank, 14, fn, sfx)
 
-#define PORT_GP_15(bank, fn, sfx)					\
-	PORT_GP_14(bank, fn, sfx),   PORT_GP_1(bank, 15, fn, sfx)
+#define PORT_GP_16(bank, fn, sfx)					\
+	PORT_GP_15(bank, fn, sfx),   PORT_GP_1(bank, 15, fn, sfx)
 
-#define PORT_GP_17(bank, fn, sfx)					\
-	PORT_GP_15(bank, fn, sfx),					\
+#define PORT_GP_18(bank, fn, sfx)					\
+	PORT_GP_16(bank, fn, sfx),					\
 	PORT_GP_1(bank, 16, fn, sfx), PORT_GP_1(bank, 17, fn, sfx)
 
-#define PORT_GP_25(bank, fn, sfx)					\
-	PORT_GP_17(bank, fn, sfx),					\
+#define PORT_GP_26(bank, fn, sfx)					\
+	PORT_GP_18(bank, fn, sfx),					\
 	PORT_GP_1(bank, 18, fn, sfx), PORT_GP_1(bank, 19, fn, sfx),	\
 	PORT_GP_1(bank, 20, fn, sfx), PORT_GP_1(bank, 21, fn, sfx),	\
 	PORT_GP_1(bank, 22, fn, sfx), PORT_GP_1(bank, 23, fn, sfx),	\
 	PORT_GP_1(bank, 24, fn, sfx), PORT_GP_1(bank, 25, fn, sfx)
 
-#define PORT_GP_27(bank, fn, sfx)					\
-	PORT_GP_25(bank, fn, sfx),					\
+#define PORT_GP_28(bank, fn, sfx)					\
+	PORT_GP_26(bank, fn, sfx),					\
 	PORT_GP_1(bank, 26, fn, sfx), PORT_GP_1(bank, 27, fn, sfx)
 
 #define CPU_ALL_PORT(fn, sfx)						\
-	PORT_GP_15(0, fn, sfx),						\
-	PORT_GP_27(1, fn, sfx),						\
-	PORT_GP_14(2, fn, sfx),						\
-	PORT_GP_15(3, fn, sfx),						\
-	PORT_GP_17(4, fn, sfx),						\
-	PORT_GP_25(5, fn, sfx),						\
+	PORT_GP_16(0, fn, sfx),						\
+	PORT_GP_28(1, fn, sfx),						\
+	PORT_GP_15(2, fn, sfx),						\
+	PORT_GP_16(3, fn, sfx),						\
+	PORT_GP_18(4, fn, sfx),						\
+	PORT_GP_26(5, fn, sfx),						\
 	PORT_GP_32(6, fn, sfx),						\
-	PORT_GP_3(7, fn, sfx)
+	PORT_GP_4(7, fn, sfx)
 /*
  * F_() : just information
  * FM() : macro for FN_xxx / xxx_MARK
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] pinctrl: sh-pfc: r8a7795: Make PORT_GP_x() macros consistent
  2015-10-29 19:39 [PATCH] pinctrl: sh-pfc: r8a7795: Make PORT_GP_x() macros consistent Geert Uytterhoeven
@ 2015-10-30 14:07 ` Linus Walleij
  2015-10-30 14:24 ` Laurent Pinchart
  1 sibling, 0 replies; 3+ messages in thread
From: Linus Walleij @ 2015-10-30 14:07 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Laurent Pinchart, Kuninori Morimoto, linux-sh@vger.kernel.org,
	linux-gpio@vger.kernel.org

On Thu, Oct 29, 2015 at 8:39 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

> On r8a7795, PORT_GP_x() is a macro for defining GPIOs 0..x.
> In all other sh-pfc code, PORT_GP_x() is a macro for defining GPIOs
> 0..(x-1).
>
> Make the r8a7795 macro definitions consistent with the rest of the
> sh-pfc codebase.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Acked-by: Linus Walleij <linus.walleij@linaro.org>

Counting on you to stack this up again, but let's save the next pull
request until after the merge window.

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] pinctrl: sh-pfc: r8a7795: Make PORT_GP_x() macros consistent
  2015-10-29 19:39 [PATCH] pinctrl: sh-pfc: r8a7795: Make PORT_GP_x() macros consistent Geert Uytterhoeven
  2015-10-30 14:07 ` Linus Walleij
@ 2015-10-30 14:24 ` Laurent Pinchart
  1 sibling, 0 replies; 3+ messages in thread
From: Laurent Pinchart @ 2015-10-30 14:24 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linus Walleij, Kuninori Morimoto, linux-sh, linux-gpio

Hi Geert,

Thank you for the patch.

On Thursday 29 October 2015 20:39:47 Geert Uytterhoeven wrote:
> On r8a7795, PORT_GP_x() is a macro for defining GPIOs 0..x.
> In all other sh-pfc code, PORT_GP_x() is a macro for defining GPIOs
> 0..(x-1).
> 
> Make the r8a7795 macro definitions consistent with the rest of the
> sh-pfc codebase.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  drivers/pinctrl/sh-pfc/pfc-r8a7795.c | 36 +++++++++++++++++----------------
>  1 file changed, 18 insertions(+), 18 deletions(-)
> 
> diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7795.c
> b/drivers/pinctrl/sh-pfc/pfc-r8a7795.c index
> 7ddb2adfc5a53d7b..29d001b8a727e154 100644
> --- a/drivers/pinctrl/sh-pfc/pfc-r8a7795.c
> +++ b/drivers/pinctrl/sh-pfc/pfc-r8a7795.c
> @@ -13,12 +13,12 @@
>  #include "core.h"
>  #include "sh_pfc.h"
> 
> -#define PORT_GP_3(bank, fn, sfx)					\
> +#define PORT_GP_4(bank, fn, sfx)					\
>  	PORT_GP_1(bank, 0,  fn, sfx), PORT_GP_1(bank, 1,  fn, sfx),	\
>  	PORT_GP_1(bank, 2,  fn, sfx), PORT_GP_1(bank, 3,  fn, sfx)
> 
> -#define PORT_GP_14(bank, fn, sfx)					\
> -	PORT_GP_3(bank, fn, sfx),					\
> +#define PORT_GP_15(bank, fn, sfx)					\
> +	PORT_GP_4(bank, fn, sfx),					\
>  	PORT_GP_1(bank, 4,  fn, sfx), PORT_GP_1(bank, 5,  fn, sfx),	\
>  	PORT_GP_1(bank, 6,  fn, sfx), PORT_GP_1(bank, 7,  fn, sfx),	\
>  	PORT_GP_1(bank, 8,  fn, sfx), PORT_GP_1(bank, 9,  fn, sfx),	\
> @@ -26,33 +26,33 @@
>  	PORT_GP_1(bank, 12, fn, sfx), PORT_GP_1(bank, 13, fn, sfx),	\
>  	PORT_GP_1(bank, 14, fn, sfx)
> 
> -#define PORT_GP_15(bank, fn, sfx)					\
> -	PORT_GP_14(bank, fn, sfx),   PORT_GP_1(bank, 15, fn, sfx)
> +#define PORT_GP_16(bank, fn, sfx)					\
> +	PORT_GP_15(bank, fn, sfx),   PORT_GP_1(bank, 15, fn, sfx)
> 
> -#define PORT_GP_17(bank, fn, sfx)					\
> -	PORT_GP_15(bank, fn, sfx),					\
> +#define PORT_GP_18(bank, fn, sfx)					\
> +	PORT_GP_16(bank, fn, sfx),					\
>  	PORT_GP_1(bank, 16, fn, sfx), PORT_GP_1(bank, 17, fn, sfx)
> 
> -#define PORT_GP_25(bank, fn, sfx)					\
> -	PORT_GP_17(bank, fn, sfx),					\
> +#define PORT_GP_26(bank, fn, sfx)					\
> +	PORT_GP_18(bank, fn, sfx),					\
>  	PORT_GP_1(bank, 18, fn, sfx), PORT_GP_1(bank, 19, fn, sfx),	\
>  	PORT_GP_1(bank, 20, fn, sfx), PORT_GP_1(bank, 21, fn, sfx),	\
>  	PORT_GP_1(bank, 22, fn, sfx), PORT_GP_1(bank, 23, fn, sfx),	\
>  	PORT_GP_1(bank, 24, fn, sfx), PORT_GP_1(bank, 25, fn, sfx)
> 
> -#define PORT_GP_27(bank, fn, sfx)					\
> -	PORT_GP_25(bank, fn, sfx),					\
> +#define PORT_GP_28(bank, fn, sfx)					\
> +	PORT_GP_26(bank, fn, sfx),					\
>  	PORT_GP_1(bank, 26, fn, sfx), PORT_GP_1(bank, 27, fn, sfx)
> 
>  #define CPU_ALL_PORT(fn, sfx)						\
> -	PORT_GP_15(0, fn, sfx),						\
> -	PORT_GP_27(1, fn, sfx),						\
> -	PORT_GP_14(2, fn, sfx),						\
> -	PORT_GP_15(3, fn, sfx),						\
> -	PORT_GP_17(4, fn, sfx),						\
> -	PORT_GP_25(5, fn, sfx),						\
> +	PORT_GP_16(0, fn, sfx),						\
> +	PORT_GP_28(1, fn, sfx),						\
> +	PORT_GP_15(2, fn, sfx),						\
> +	PORT_GP_16(3, fn, sfx),						\
> +	PORT_GP_18(4, fn, sfx),						\
> +	PORT_GP_26(5, fn, sfx),						\
>  	PORT_GP_32(6, fn, sfx),						\
> -	PORT_GP_3(7, fn, sfx)
> +	PORT_GP_4(7, fn, sfx)
>  /*
>   * F_() : just information
>   * FM() : macro for FN_xxx / xxx_MARK

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-10-30 14:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-29 19:39 [PATCH] pinctrl: sh-pfc: r8a7795: Make PORT_GP_x() macros consistent Geert Uytterhoeven
2015-10-30 14:07 ` Linus Walleij
2015-10-30 14:24 ` Laurent Pinchart

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).