[PATCH] drm/panel: innolux-p079zca: Use of_device_get_match_data()
Thierry Reding
thierry.reding at gmail.com
Tue Jul 10 11:01:27 UTC 2018
From: Thierry Reding <treding at nvidia.com>
Use this helper to get rid of some extra boilerplate code.
Signed-off-by: Thierry Reding <treding at 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
More information about the dri-devel
mailing list