All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm: rcar-du: Remove obsolete rcar-du-r8a779x platform_device_id entries
@ 2015-06-23 12:58 ` Geert Uytterhoeven
  0 siblings, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2015-06-23 12:58 UTC (permalink / raw)
  To: Laurent Pinchart, David Airlie; +Cc: dri-devel, linux-sh, Geert Uytterhoeven

Since commit a483dcbfa21f919c ("ARM: shmobile: lager: Remove legacy
board support"), R-Car Gen2 SoCs are only supported in generic DT-only
ARM multi-platform builds.  The driver doesn't need to match platform
devices by name anymore, hence remove the corresponding
platform_device_id entry.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/gpu/drm/rcar-du/rcar_du_drv.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
index 780ca11512ba6cf1..fb6709160a591a4d 100644
--- a/drivers/gpu/drm/rcar-du/rcar_du_drv.c
+++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
@@ -108,8 +108,6 @@ static const struct rcar_du_device_info rcar_du_r8a7791_info = {
 
 static const struct platform_device_id rcar_du_id_table[] = {
 	{ "rcar-du-r8a7779", (kernel_ulong_t)&rcar_du_r8a7779_info },
-	{ "rcar-du-r8a7790", (kernel_ulong_t)&rcar_du_r8a7790_info },
-	{ "rcar-du-r8a7791", (kernel_ulong_t)&rcar_du_r8a7791_info },
 	{ }
 };
 
-- 
1.9.1


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

* [PATCH] drm: rcar-du: Remove obsolete rcar-du-r8a779x platform_device_id entries
@ 2015-06-23 12:58 ` Geert Uytterhoeven
  0 siblings, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2015-06-23 12:58 UTC (permalink / raw)
  To: Laurent Pinchart, David Airlie; +Cc: dri-devel, linux-sh, Geert Uytterhoeven

Since commit a483dcbfa21f919c ("ARM: shmobile: lager: Remove legacy
board support"), R-Car Gen2 SoCs are only supported in generic DT-only
ARM multi-platform builds.  The driver doesn't need to match platform
devices by name anymore, hence remove the corresponding
platform_device_id entry.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/gpu/drm/rcar-du/rcar_du_drv.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
index 780ca11512ba6cf1..fb6709160a591a4d 100644
--- a/drivers/gpu/drm/rcar-du/rcar_du_drv.c
+++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
@@ -108,8 +108,6 @@ static const struct rcar_du_device_info rcar_du_r8a7791_info = {
 
 static const struct platform_device_id rcar_du_id_table[] = {
 	{ "rcar-du-r8a7779", (kernel_ulong_t)&rcar_du_r8a7779_info },
-	{ "rcar-du-r8a7790", (kernel_ulong_t)&rcar_du_r8a7790_info },
-	{ "rcar-du-r8a7791", (kernel_ulong_t)&rcar_du_r8a7791_info },
 	{ }
 };
 
-- 
1.9.1


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

* Re: [PATCH] drm: rcar-du: Remove obsolete rcar-du-r8a779x platform_device_id entries
  2015-06-23 12:58 ` Geert Uytterhoeven
@ 2015-06-23 19:28   ` Laurent Pinchart
  -1 siblings, 0 replies; 4+ messages in thread
From: Laurent Pinchart @ 2015-06-23 19:28 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: David Airlie, dri-devel, linux-sh

Hi Geert,

Thank you for the patch.

On Tuesday 23 June 2015 14:58:52 Geert Uytterhoeven wrote:
> Since commit a483dcbfa21f919c ("ARM: shmobile: lager: Remove legacy
> board support"), R-Car Gen2 SoCs are only supported in generic DT-only
> ARM multi-platform builds.  The driver doesn't need to match platform
> devices by name anymore, hence remove the corresponding
> platform_device_id entry.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

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

and applied to my tree.

> ---
>  drivers/gpu/drm/rcar-du/rcar_du_drv.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> b/drivers/gpu/drm/rcar-du/rcar_du_drv.c index
> 780ca11512ba6cf1..fb6709160a591a4d 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> @@ -108,8 +108,6 @@ static const struct rcar_du_device_info
> rcar_du_r8a7791_info = {
> 
>  static const struct platform_device_id rcar_du_id_table[] = {
>  	{ "rcar-du-r8a7779", (kernel_ulong_t)&rcar_du_r8a7779_info },
> -	{ "rcar-du-r8a7790", (kernel_ulong_t)&rcar_du_r8a7790_info },
> -	{ "rcar-du-r8a7791", (kernel_ulong_t)&rcar_du_r8a7791_info },
>  	{ }
>  };

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH] drm: rcar-du: Remove obsolete rcar-du-r8a779x platform_device_id entries
@ 2015-06-23 19:28   ` Laurent Pinchart
  0 siblings, 0 replies; 4+ messages in thread
From: Laurent Pinchart @ 2015-06-23 19:28 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: David Airlie, dri-devel, linux-sh

Hi Geert,

Thank you for the patch.

On Tuesday 23 June 2015 14:58:52 Geert Uytterhoeven wrote:
> Since commit a483dcbfa21f919c ("ARM: shmobile: lager: Remove legacy
> board support"), R-Car Gen2 SoCs are only supported in generic DT-only
> ARM multi-platform builds.  The driver doesn't need to match platform
> devices by name anymore, hence remove the corresponding
> platform_device_id entry.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

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

and applied to my tree.

> ---
>  drivers/gpu/drm/rcar-du/rcar_du_drv.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> b/drivers/gpu/drm/rcar-du/rcar_du_drv.c index
> 780ca11512ba6cf1..fb6709160a591a4d 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> @@ -108,8 +108,6 @@ static const struct rcar_du_device_info
> rcar_du_r8a7791_info = {
> 
>  static const struct platform_device_id rcar_du_id_table[] = {
>  	{ "rcar-du-r8a7779", (kernel_ulong_t)&rcar_du_r8a7779_info },
> -	{ "rcar-du-r8a7790", (kernel_ulong_t)&rcar_du_r8a7790_info },
> -	{ "rcar-du-r8a7791", (kernel_ulong_t)&rcar_du_r8a7791_info },
>  	{ }
>  };

-- 
Regards,

Laurent Pinchart


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

end of thread, other threads:[~2015-06-23 19:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-23 12:58 [PATCH] drm: rcar-du: Remove obsolete rcar-du-r8a779x platform_device_id entries Geert Uytterhoeven
2015-06-23 12:58 ` Geert Uytterhoeven
2015-06-23 19:28 ` Laurent Pinchart
2015-06-23 19:28   ` Laurent Pinchart

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.