summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTomasz Stanislawski <t.stanislaws@samsung.com>2014-04-30 17:26:31 +0900
committerInki Dae <inki.dae@samsung.com>2014-04-30 17:27:52 +0900
commitf29cdf1a97c1ca76f536bfc1f397796437bb3f92 (patch)
tree3e115aaf1bc9919500c97aa9956e8022167aca56 /drivers
parent190775afea18a8df983044ee0cbbed22cb77ba93 (diff)
downloadlinux-3.10-f29cdf1a97c1ca76f536bfc1f397796437bb3f92.tar.gz
linux-3.10-f29cdf1a97c1ca76f536bfc1f397796437bb3f92.tar.bz2
linux-3.10-f29cdf1a97c1ca76f536bfc1f397796437bb3f92.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')
-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);