Hi,
On Thu, 30 Nov 2017 14:14:40 +0800 Lin Huang wrote:
Support Innolux P097PFG 9.7" 1536x2048 TFT LCD panel, it refactor Innolux P079ZCA panel driver, let it support multi panel, and add support P097PFG panel in this driver.
Signed-off-by: Lin Huang hl@rock-chips.com
drivers/gpu/drm/panel/panel-innolux-p079zca.c | 178 ++++++++++++++++++++------ 1 file changed, 136 insertions(+), 42 deletions(-)
diff --git a/drivers/gpu/drm/panel/panel-innolux-p079zca.c b/drivers/gpu/drm/panel/panel-innolux-p079zca.c index 6ba9344..a40798f 100644 --- a/drivers/gpu/drm/panel/panel-innolux-p079zca.c +++ b/drivers/gpu/drm/panel/panel-innolux-p079zca.c
[...]
@@ -209,20 +284,39 @@ static const struct drm_panel_funcs innolux_panel_funcs = { };
static const struct of_device_id innolux_of_match[] = {
- { .compatible = "innolux,p079zca", },
- { }
- { .compatible = "innolux,p079zca",
.data = &innolux_p079zca_panel_desc
- },
- { .compatible = "innolux,p097pfg",
.data = &innolux_p097pfg_panel_desc
- }
};
This hunk deletes the empty entry which is required as an end of list marker!
Lothar Waßmann