diff options
author | Archit Taneja <archit@ti.com> | 2014-05-08 05:15:12 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-05-09 05:58:04 -0400 |
commit | 0059277276bdbbcfeaed454017ec70628414d3fe (patch) | |
tree | d170a3fb7de276851e7fa774e15ee85867a1f9f3 /drivers/video | |
parent | a41ca72e5733097c8e54784d42b3d340d5b504ad (diff) |
omapdss: remove check for simpler port/endpoint binding
The support for simpler port/endpoint binding was removed in the merged version
of omapdss DT. But dss_init_ports still tries to get to an endpoint even if no
port exists. Remove this as this doesn't work.
Signed-off-by: Archit Taneja <archit@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/fbdev/omap2/dss/dss.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/video/fbdev/omap2/dss/dss.c b/drivers/video/fbdev/omap2/dss/dss.c index a1c1cc217332..71524cb1b423 100644 --- a/drivers/video/fbdev/omap2/dss/dss.c +++ b/drivers/video/fbdev/omap2/dss/dss.c | |||
@@ -784,12 +784,8 @@ static int __init dss_init_ports(struct platform_device *pdev) | |||
784 | return 0; | 784 | return 0; |
785 | 785 | ||
786 | port = omapdss_of_get_next_port(parent, NULL); | 786 | port = omapdss_of_get_next_port(parent, NULL); |
787 | if (!port) { | 787 | if (!port) |
788 | #ifdef CONFIG_OMAP2_DSS_DPI | ||
789 | dpi_init_port(pdev, parent); | ||
790 | #endif | ||
791 | return 0; | 788 | return 0; |
792 | } | ||
793 | 789 | ||
794 | do { | 790 | do { |
795 | u32 reg; | 791 | u32 reg; |