summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm
diff options
context:
space:
mode:
authorTomasz Stanislawski <t.stanislaws@samsung.com>2014-04-30 17:26:31 +0900
committerChanho Park <chanho61.park@samsung.com>2014-11-18 11:47:43 +0900
commitf087230c1eb4f3658fb4f465fc53bb34a6bee021 (patch)
tree122930990d0911bca5705f1e2fd2f4070c9203cd /drivers/gpu/drm
parente0ac6157b7299bb53ee87a715f967f81d258c974 (diff)
downloadlinux-3.10-f087230c1eb4f3658fb4f465fc53bb34a6bee021.tar.gz
linux-3.10-f087230c1eb4f3658fb4f465fc53bb34a6bee021.tar.bz2
linux-3.10-f087230c1eb4f3658fb4f465fc53bb34a6bee021.zip
Revert "drm/exynos: add mout_hdmi clock in hdmi driver to change parent"
Signed-off-by: Tomasz Stanislawski <t.stanislaws@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r--drivers/gpu/drm/exynos/exynos_hdmi.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c
index 62ea017c690..098182ab5df 100644
--- a/drivers/gpu/drm/exynos/exynos_hdmi.c
+++ b/drivers/gpu/drm/exynos/exynos_hdmi.c
@@ -87,7 +87,6 @@ struct hdmi_resources {
struct clk *sclk_pixel;
struct clk *sclk_hdmiphy;
struct phy *hdmiphy;
- struct clk *mout_hdmi;
struct regulator_bulk_data *regul_bulk;
int regul_count;
};
@@ -1982,13 +1981,8 @@ static int hdmi_resources_init(struct hdmi_context *hdata)
DRM_ERROR("failed to get phy 'hdmiphy'\n");
goto fail;
}
- res->mout_hdmi = devm_clk_get(dev, "mout_hdmi");
- if (IS_ERR(res->mout_hdmi)) {
- DRM_ERROR("failed to get clock 'mout_hdmi'\n");
- goto fail;
- }
- clk_set_parent(res->mout_hdmi, res->sclk_pixel);
+ clk_set_parent(res->sclk_hdmi, res->sclk_pixel);
res->regul_bulk = devm_kzalloc(dev, ARRAY_SIZE(supply) *
sizeof(res->regul_bulk[0]), GFP_KERNEL);