* [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry
@ 2015-02-15 16:01 Laurent Pinchart
2015-02-15 16:41 ` Simon Horman
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Laurent Pinchart @ 2015-02-15 16:01 UTC (permalink / raw)
To: linux-sh
The r8a7791 platform is now DT-only, the driver doesn't need to match
platform devices by name anymore. Remove the corresponding
platform_device_id entry.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
---
drivers/pinctrl/sh-pfc/core.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c
index a56280814a3f..e2c442b64a2c 100644
--- a/drivers/pinctrl/sh-pfc/core.c
+++ b/drivers/pinctrl/sh-pfc/core.c
@@ -597,9 +597,6 @@ static const struct platform_device_id sh_pfc_id_table[] = {
#ifdef CONFIG_PINCTRL_PFC_R8A7790
{ "pfc-r8a7790", (kernel_ulong_t)&r8a7790_pinmux_info },
#endif
-#ifdef CONFIG_PINCTRL_PFC_R8A7791
- { "pfc-r8a7791", (kernel_ulong_t)&r8a7791_pinmux_info },
-#endif
#ifdef CONFIG_PINCTRL_PFC_SH7203
{ "pfc-sh7203", (kernel_ulong_t)&sh7203_pinmux_info },
#endif
--
Regards,
Laurent Pinchart
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry
2015-02-15 16:01 [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry Laurent Pinchart
@ 2015-02-15 16:41 ` Simon Horman
2015-02-16 8:49 ` Geert Uytterhoeven
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2015-02-15 16:41 UTC (permalink / raw)
To: linux-sh
On Sun, Feb 15, 2015 at 06:01:41PM +0200, Laurent Pinchart wrote:
> The r8a7791 platform is now DT-only, the driver doesn't need to match
> platform devices by name anymore. Remove the corresponding
> platform_device_id entry.
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
> ---
> drivers/pinctrl/sh-pfc/core.c | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c
> index a56280814a3f..e2c442b64a2c 100644
> --- a/drivers/pinctrl/sh-pfc/core.c
> +++ b/drivers/pinctrl/sh-pfc/core.c
> @@ -597,9 +597,6 @@ static const struct platform_device_id sh_pfc_id_table[] = {
> #ifdef CONFIG_PINCTRL_PFC_R8A7790
> { "pfc-r8a7790", (kernel_ulong_t)&r8a7790_pinmux_info },
> #endif
> -#ifdef CONFIG_PINCTRL_PFC_R8A7791
> - { "pfc-r8a7791", (kernel_ulong_t)&r8a7791_pinmux_info },
> -#endif
> #ifdef CONFIG_PINCTRL_PFC_SH7203
> { "pfc-sh7203", (kernel_ulong_t)&sh7203_pinmux_info },
> #endif
> --
> Regards,
>
> Laurent Pinchart
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry
2015-02-15 16:01 [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry Laurent Pinchart
2015-02-15 16:41 ` Simon Horman
@ 2015-02-16 8:49 ` Geert Uytterhoeven
2015-03-01 12:20 ` Laurent Pinchart
2015-03-06 10:41 ` Linus Walleij
3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2015-02-16 8:49 UTC (permalink / raw)
To: linux-sh
On Sun, Feb 15, 2015 at 5:01 PM, Laurent Pinchart
<laurent.pinchart+renesas@ideasonboard.com> wrote:
> The r8a7791 platform is now DT-only, the driver doesn't need to match
> platform devices by name anymore. Remove the corresponding
> platform_device_id entry.
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry
2015-02-15 16:01 [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry Laurent Pinchart
2015-02-15 16:41 ` Simon Horman
2015-02-16 8:49 ` Geert Uytterhoeven
@ 2015-03-01 12:20 ` Laurent Pinchart
2015-03-06 10:41 ` Linus Walleij
3 siblings, 0 replies; 5+ messages in thread
From: Laurent Pinchart @ 2015-03-01 12:20 UTC (permalink / raw)
To: linux-sh
Hi Linus,
Could you please pick this patch up for v4.1 ?
On Sunday 15 February 2015 18:01:41 Laurent Pinchart wrote:
> The r8a7791 platform is now DT-only, the driver doesn't need to match
> platform devices by name anymore. Remove the corresponding
> platform_device_id entry.
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> ---
> drivers/pinctrl/sh-pfc/core.c | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c
> index a56280814a3f..e2c442b64a2c 100644
> --- a/drivers/pinctrl/sh-pfc/core.c
> +++ b/drivers/pinctrl/sh-pfc/core.c
> @@ -597,9 +597,6 @@ static const struct platform_device_id sh_pfc_id_table[]
> = { #ifdef CONFIG_PINCTRL_PFC_R8A7790
> { "pfc-r8a7790", (kernel_ulong_t)&r8a7790_pinmux_info },
> #endif
> -#ifdef CONFIG_PINCTRL_PFC_R8A7791
> - { "pfc-r8a7791", (kernel_ulong_t)&r8a7791_pinmux_info },
> -#endif
> #ifdef CONFIG_PINCTRL_PFC_SH7203
> { "pfc-sh7203", (kernel_ulong_t)&sh7203_pinmux_info },
> #endif
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry
2015-02-15 16:01 [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry Laurent Pinchart
` (2 preceding siblings ...)
2015-03-01 12:20 ` Laurent Pinchart
@ 2015-03-06 10:41 ` Linus Walleij
3 siblings, 0 replies; 5+ messages in thread
From: Linus Walleij @ 2015-03-06 10:41 UTC (permalink / raw)
To: linux-sh
On Sun, Feb 15, 2015 at 5:01 PM, Laurent Pinchart
<laurent.pinchart+renesas@ideasonboard.com> wrote:
> The r8a7791 platform is now DT-only, the driver doesn't need to match
> platform devices by name anymore. Remove the corresponding
> platform_device_id entry.
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Patch applied with all ACKs.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-03-06 10:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-15 16:01 [PATCH] pinctrl: sh-pfc: Remove r8a7791 platform_device_id entry Laurent Pinchart
2015-02-15 16:41 ` Simon Horman
2015-02-16 8:49 ` Geert Uytterhoeven
2015-03-01 12:20 ` Laurent Pinchart
2015-03-06 10:41 ` 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).