aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2011-03-02 12:48:35 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2011-03-11 15:46:28 +0200
commit0a5835185420160f4fe8a6e1d1e42cd7efa07dc7 (patch)
tree1fd804cc4cd5e0ef2f5d0c581774ffd3c02fac32 /drivers/video/omap2
parentOMAP: DSS2: Move DPI & SDI init into DSS plat driver (diff)
downloadlinux-dev-0a5835185420160f4fe8a6e1d1e42cd7efa07dc7.tar.xz
linux-dev-0a5835185420160f4fe8a6e1d1e42cd7efa07dc7.zip
OMAP: DSS2: Remove unneeded cpu_is_xxx checks
cpu_is_omapxxx() was used previously to select the supported interfaces. Now that the interfaces are platform devices, we no longer need to do the check when registering the driver. Thus we can just remove the checks. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2')
-rw-r--r--drivers/video/omap2/dss/core.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
index 8cfedae98211..c2f930bf2844 100644
--- a/drivers/video/omap2/dss/core.c
+++ b/drivers/video/omap2/dss/core.c
@@ -203,12 +203,10 @@ static int omap_dss_probe(struct platform_device *pdev)
goto err_venc;
}
- if (cpu_is_omap34xx()) {
- r = dsi_init_platform_driver();
- if (r) {
- DSSERR("Failed to initialize DSI platform driver\n");
- goto err_dsi;
- }
+ r = dsi_init_platform_driver();
+ if (r) {
+ DSSERR("Failed to initialize DSI platform driver\n");
+ goto err_dsi;
}
r = dss_initialize_debugfs();
@@ -240,8 +238,7 @@ static int omap_dss_probe(struct platform_device *pdev)
err_register:
dss_uninitialize_debugfs();
err_debugfs:
- if (cpu_is_omap34xx())
- dsi_uninit_platform_driver();
+ dsi_uninit_platform_driver();
err_dsi:
venc_uninit_platform_driver();
err_venc:
@@ -265,10 +262,7 @@ static int omap_dss_remove(struct platform_device *pdev)
venc_uninit_platform_driver();
dispc_uninit_platform_driver();
rfbi_uninit_platform_driver();
- if (cpu_is_omap34xx()) {
- dsi_uninit_platform_driver();
- }
-
+ dsi_uninit_platform_driver();
dss_uninit_platform_driver();
dss_uninit_overlays(pdev);