diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-11-26 10:26:29 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-11-26 10:26:29 +0200 |
commit | 474ff6b8a79093aea966b6246d5b8000de124da9 (patch) | |
tree | c73caeaeef6d800ca8795687294ed2cbd74607db | |
parent | 9b76c9cdece2b14a23bfddd765f6dac1dd4d0120 (diff) | |
parent | 8ad9375f8b7c709b89f7de4de413bb2644ba3c24 (diff) | |
download | linux-3.10-474ff6b8a79093aea966b6246d5b8000de124da9.tar.gz linux-3.10-474ff6b8a79093aea966b6246d5b8000de124da9.tar.bz2 linux-3.10-474ff6b8a79093aea966b6246d5b8000de124da9.zip |
Merge tag 'omapdss-for-3.7-rc' of git://gitorious.org/linux-omap-dss2/linux
omapdss fixes for 3.7-rc
Conflicts:
drivers/video/omap2/dss/dss.c
-rw-r--r-- | drivers/video/omap2/dss/dss.c | 14 | ||||
-rw-r--r-- | drivers/video/omap2/omapfb/omapfb-ioctl.c | 2 |
2 files changed, 10 insertions, 6 deletions
diff --git a/drivers/video/omap2/dss/dss.c b/drivers/video/omap2/dss/dss.c index df3d89a8c8a..6ca69d55cf5 100644 --- a/drivers/video/omap2/dss/dss.c +++ b/drivers/video/omap2/dss/dss.c @@ -753,11 +753,15 @@ static int dss_get_clocks(void) dss.dss_clk = clk; - clk = clk_get(NULL, dss.feat->clk_name); - if (IS_ERR(clk)) { - DSSERR("Failed to get %s\n", dss.feat->clk_name); - r = PTR_ERR(clk); - goto err; + if (dss.feat->clk_name) { + clk = clk_get(NULL, dss.feat->clk_name); + if (IS_ERR(clk)) { + DSSERR("Failed to get %s\n", dss.feat->clk_name); + r = PTR_ERR(clk); + goto err; + } + } else { + clk = NULL; } dss.dpll4_m4_ck = clk; diff --git a/drivers/video/omap2/omapfb/omapfb-ioctl.c b/drivers/video/omap2/omapfb/omapfb-ioctl.c index 442cff4dea7..8b1e9e375f0 100644 --- a/drivers/video/omap2/omapfb/omapfb-ioctl.c +++ b/drivers/video/omap2/omapfb/omapfb-ioctl.c @@ -787,7 +787,7 @@ int omapfb_ioctl(struct fb_info *fbi, unsigned int cmd, unsigned long arg) case OMAPFB_WAITFORVSYNC: DBG("ioctl WAITFORVSYNC\n"); - if (!display && !display->output && !display->output->manager) { + if (!display || !display->output || !display->output->manager) { r = -EINVAL; break; } |