dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/panel: innolux-p079zca: Use of_device_get_match_data()
@ 2018-07-10 11:01 Thierry Reding
  2018-07-10 12:41 ` Heiko Stuebner
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Thierry Reding @ 2018-07-10 11:01 UTC (permalink / raw)
  To: Thierry Reding; +Cc: dri-devel, Lin Huang

From: Thierry Reding <treding@nvidia.com>

Use this helper to get rid of some extra boilerplate code.

Signed-off-by: Thierry Reding <treding@nvidia.com>
---
 drivers/gpu/drm/panel/panel-innolux-p079zca.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/panel/panel-innolux-p079zca.c b/drivers/gpu/drm/panel/panel-innolux-p079zca.c
index 185a55060195..62fbaac96823 100644
--- a/drivers/gpu/drm/panel/panel-innolux-p079zca.c
+++ b/drivers/gpu/drm/panel/panel-innolux-p079zca.c
@@ -314,14 +314,9 @@ static void innolux_panel_del(struct innolux_panel *innolux)
 static int innolux_panel_probe(struct mipi_dsi_device *dsi)
 {
 	const struct panel_desc *desc;
-	const struct of_device_id *id;
 	int err;
 
-	id = of_match_node(innolux_of_match, dsi->dev.of_node);
-	if (!id)
-		return -ENODEV;
-
-	desc = id->data;
+	desc = of_device_get_match_data(dsi->dev);
 	dsi->mode_flags = desc->flags;
 	dsi->format = desc->format;
 	dsi->lanes = desc->lanes;
-- 
2.17.0

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] drm/panel: innolux-p079zca: Use of_device_get_match_data()
  2018-07-10 11:01 [PATCH] drm/panel: innolux-p079zca: Use of_device_get_match_data() Thierry Reding
@ 2018-07-10 12:41 ` Heiko Stuebner
  2018-07-10 14:21 ` Thierry Reding
  2018-07-10 14:24 ` Thierry Reding
  2 siblings, 0 replies; 4+ messages in thread
From: Heiko Stuebner @ 2018-07-10 12:41 UTC (permalink / raw)
  To: Thierry Reding; +Cc: Lin Huang, dri-devel

Am Dienstag, 10. Juli 2018, 13:01:27 CEST schrieb Thierry Reding:
> From: Thierry Reding <treding@nvidia.com>
> 
> Use this helper to get rid of some extra boilerplate code.
> 
> Signed-off-by: Thierry Reding <treding@nvidia.com>

Reviewed-by: Heiko Stuebner <heiko@sntech.de>



_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] drm/panel: innolux-p079zca: Use of_device_get_match_data()
  2018-07-10 11:01 [PATCH] drm/panel: innolux-p079zca: Use of_device_get_match_data() Thierry Reding
  2018-07-10 12:41 ` Heiko Stuebner
@ 2018-07-10 14:21 ` Thierry Reding
  2018-07-10 14:24 ` Thierry Reding
  2 siblings, 0 replies; 4+ messages in thread
From: Thierry Reding @ 2018-07-10 14:21 UTC (permalink / raw)
  To: Heiko Stuebner, Lin Huang, dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 377 bytes --]

On Tue, Jul 10, 2018 at 01:01:27PM +0200, Thierry Reding wrote:
> From: Thierry Reding <treding@nvidia.com>
> 
> Use this helper to get rid of some extra boilerplate code.
> 
> Signed-off-by: Thierry Reding <treding@nvidia.com>
> ---
>  drivers/gpu/drm/panel/panel-innolux-p079zca.c | 7 +------
>  1 file changed, 1 insertion(+), 6 deletions(-)

Applied.

Thierry

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] drm/panel: innolux-p079zca: Use of_device_get_match_data()
  2018-07-10 11:01 [PATCH] drm/panel: innolux-p079zca: Use of_device_get_match_data() Thierry Reding
  2018-07-10 12:41 ` Heiko Stuebner
  2018-07-10 14:21 ` Thierry Reding
@ 2018-07-10 14:24 ` Thierry Reding
  2 siblings, 0 replies; 4+ messages in thread
From: Thierry Reding @ 2018-07-10 14:24 UTC (permalink / raw)
  To: Heiko Stuebner, Lin Huang, dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 1409 bytes --]

On Tue, Jul 10, 2018 at 01:01:27PM +0200, Thierry Reding wrote:
> From: Thierry Reding <treding@nvidia.com>
> 
> Use this helper to get rid of some extra boilerplate code.
> 
> Signed-off-by: Thierry Reding <treding@nvidia.com>
> ---
>  drivers/gpu/drm/panel/panel-innolux-p079zca.c | 7 +------
>  1 file changed, 1 insertion(+), 6 deletions(-)
> 
> diff --git a/drivers/gpu/drm/panel/panel-innolux-p079zca.c b/drivers/gpu/drm/panel/panel-innolux-p079zca.c
> index 185a55060195..62fbaac96823 100644
> --- a/drivers/gpu/drm/panel/panel-innolux-p079zca.c
> +++ b/drivers/gpu/drm/panel/panel-innolux-p079zca.c
> @@ -314,14 +314,9 @@ static void innolux_panel_del(struct innolux_panel *innolux)
>  static int innolux_panel_probe(struct mipi_dsi_device *dsi)
>  {
>  	const struct panel_desc *desc;
> -	const struct of_device_id *id;
>  	int err;
>  
> -	id = of_match_node(innolux_of_match, dsi->dev.of_node);
> -	if (!id)
> -		return -ENODEV;
> -
> -	desc = id->data;
> +	desc = of_device_get_match_data(dsi->dev);
>  	dsi->mode_flags = desc->flags;
>  	dsi->format = desc->format;
>  	dsi->lanes = desc->lanes;

Oops, I just noticed I had parts of this in a stash which causes the
above to fail to build. I've squashed the missing bits into the above,
adding an include for linux/of_device.h and passing &dsi->dev instead
of dsi->dev to of_device_get_match_data().

Thierry

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-10 11:01 [PATCH] drm/panel: innolux-p079zca: Use of_device_get_match_data() Thierry Reding
2018-07-10 12:41 ` Heiko Stuebner
2018-07-10 14:21 ` Thierry Reding
2018-07-10 14:24 ` Thierry Reding

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).