aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2016-05-04 11:38:32 -0400
committerMaxime Ripard <maxime.ripard@free-electrons.com>2016-05-30 02:28:33 -0400
commit0bbbb00bda57e6f091275b0103445596322b9277 (patch)
tree107e230ea37ad78648709c02e2c4af71bc801368
parentbb43d40d7c830da5f623e3938fef908b003b7523 (diff)
drm/sun4i: defer only if we didn't find our panel
Our code currently defers our probe on any error, even if we were not expecting to have one at all. Make sure we return -EPROBE_DEFER only when we were supposed to have a panel, but it's not probed yet. Also fix a typo while we're at it. Fixes: 29e57fab97fc ("drm: sun4i: Add RGB output") Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
-rw-r--r--drivers/gpu/drm/sun4i/sun4i_tcon.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/drivers/gpu/drm/sun4i/sun4i_tcon.c b/drivers/gpu/drm/sun4i/sun4i_tcon.c
index 9f19b0e08560..16ab426ffa34 100644
--- a/drivers/gpu/drm/sun4i/sun4i_tcon.c
+++ b/drivers/gpu/drm/sun4i/sun4i_tcon.c
@@ -425,11 +425,11 @@ static struct drm_panel *sun4i_tcon_find_panel(struct device_node *node)
425 425
426 remote = of_graph_get_remote_port_parent(end_node); 426 remote = of_graph_get_remote_port_parent(end_node);
427 if (!remote) { 427 if (!remote) {
428 DRM_DEBUG_DRIVER("Enable to parse remote node\n"); 428 DRM_DEBUG_DRIVER("Unable to parse remote node\n");
429 return ERR_PTR(-EINVAL); 429 return ERR_PTR(-EINVAL);
430 } 430 }
431 431
432 return of_drm_find_panel(remote); 432 return of_drm_find_panel(remote) ?: ERR_PTR(-EPROBE_DEFER);
433} 433}
434 434
435static int sun4i_tcon_bind(struct device *dev, struct device *master, 435static int sun4i_tcon_bind(struct device *dev, struct device *master,
@@ -522,12 +522,13 @@ static int sun4i_tcon_probe(struct platform_device *pdev)
522 * Defer the probe. 522 * Defer the probe.
523 */ 523 */
524 panel = sun4i_tcon_find_panel(node); 524 panel = sun4i_tcon_find_panel(node);
525 if (IS_ERR(panel)) { 525
526 /* 526 /*
527 * If we don't have a panel endpoint, just go on 527 * If we don't have a panel endpoint, just go on
528 */ 528 */
529 if (PTR_ERR(panel) != -ENODEV) 529 if (PTR_ERR(panel) == -EPROBE_DEFER) {
530 return -EPROBE_DEFER; 530 DRM_DEBUG_DRIVER("Still waiting for our panel. Deferring...\n");
531 return -EPROBE_DEFER;
531 } 532 }
532 533
533 return component_add(&pdev->dev, &sun4i_tcon_ops); 534 return component_add(&pdev->dev, &sun4i_tcon_ops);