* [PATCH] sh-pfc: r8a7791: fix CAN pin groups
@ 2014-07-28 22:12 Sergei Shtylyov
2014-07-28 22:18 ` Laurent Pinchart
2014-08-08 12:58 ` Linus Walleij
0 siblings, 2 replies; 3+ messages in thread
From: Sergei Shtylyov @ 2014-07-28 22:12 UTC (permalink / raw)
To: linux-sh
I had made last-minute changes before submitting the patch "sh-pfc: r8a7791:
add CAN pin groups"; now I'm seeing that they weren't complete: I had missed
update to the pin group names in pin[01]_groups[]. Drop the "_a" suffixes there.
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
---
The patch is against the 'devel' branch of Linus W.'s 'linux-pinctrl.git' repo.
drivers/pinctrl/sh-pfc/pfc-r8a7791.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Index: linux-pinctrl/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
=================================--- linux-pinctrl.orig/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
+++ linux-pinctrl/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
@@ -4509,24 +4509,24 @@ static const char * const audio_clk_grou
};
static const char * const can0_groups[] = {
- "can0_data_a",
+ "can0_data",
"can0_data_b",
"can0_data_c",
"can0_data_d",
"can0_data_e",
"can0_data_f",
- "can_clk_a",
+ "can_clk",
"can_clk_b",
"can_clk_c",
"can_clk_d",
};
static const char * const can1_groups[] = {
- "can1_data_a",
+ "can1_data",
"can1_data_b",
"can1_data_c",
"can1_data_d",
- "can_clk_a",
+ "can_clk",
"can_clk_b",
"can_clk_c",
"can_clk_d",
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] sh-pfc: r8a7791: fix CAN pin groups
2014-07-28 22:12 [PATCH] sh-pfc: r8a7791: fix CAN pin groups Sergei Shtylyov
@ 2014-07-28 22:18 ` Laurent Pinchart
2014-08-08 12:58 ` Linus Walleij
1 sibling, 0 replies; 3+ messages in thread
From: Laurent Pinchart @ 2014-07-28 22:18 UTC (permalink / raw)
To: linux-sh
Hi Sergei,
Thank you for the patch.
On Tuesday 29 July 2014 02:12:55 Sergei Shtylyov wrote:
> I had made last-minute changes before submitting the patch "sh-pfc: r8a7791:
> add CAN pin groups"; now I'm seeing that they weren't complete: I had
> missed update to the pin group names in pin[01]_groups[]. Drop the "_a"
> suffixes there.
>
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> The patch is against the 'devel' branch of Linus W.'s 'linux-pinctrl.git'
> repo.
>
> drivers/pinctrl/sh-pfc/pfc-r8a7791.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> Index: linux-pinctrl/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
> =================================> --- linux-pinctrl.orig/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
> +++ linux-pinctrl/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
> @@ -4509,24 +4509,24 @@ static const char * const audio_clk_grou
> };
>
> static const char * const can0_groups[] = {
> - "can0_data_a",
> + "can0_data",
> "can0_data_b",
> "can0_data_c",
> "can0_data_d",
> "can0_data_e",
> "can0_data_f",
> - "can_clk_a",
> + "can_clk",
> "can_clk_b",
> "can_clk_c",
> "can_clk_d",
> };
>
> static const char * const can1_groups[] = {
> - "can1_data_a",
> + "can1_data",
> "can1_data_b",
> "can1_data_c",
> "can1_data_d",
> - "can_clk_a",
> + "can_clk",
> "can_clk_b",
> "can_clk_c",
> "can_clk_d",
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] sh-pfc: r8a7791: fix CAN pin groups
2014-07-28 22:12 [PATCH] sh-pfc: r8a7791: fix CAN pin groups Sergei Shtylyov
2014-07-28 22:18 ` Laurent Pinchart
@ 2014-08-08 12:58 ` Linus Walleij
1 sibling, 0 replies; 3+ messages in thread
From: Linus Walleij @ 2014-08-08 12:58 UTC (permalink / raw)
To: linux-sh
On Tue, Jul 29, 2014 at 12:12 AM, Sergei Shtylyov
<sergei.shtylyov@cogentembedded.com> wrote:
> I had made last-minute changes before submitting the patch "sh-pfc: r8a7791:
> add CAN pin groups"; now I'm seeing that they weren't complete: I had missed
> update to the pin group names in pin[01]_groups[]. Drop the "_a" suffixes there.
>
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
>
> ---
> The patch is against the 'devel' branch of Linus W.'s 'linux-pinctrl.git' repo.
Patch applied for fixes with Laurent's ACK.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-08-08 12:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-28 22:12 [PATCH] sh-pfc: r8a7791: fix CAN pin groups Sergei Shtylyov
2014-07-28 22:18 ` Laurent Pinchart
2014-08-08 12:58 ` Linus Walleij
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).