Skip to content

Commit

Permalink
drm/exynos: mic: use devm_clk interface
Browse files Browse the repository at this point in the history
Drivers should use devm_clk* interface instead of of_clk* functions.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
  • Loading branch information
Marek Szyprowski authored and Inki Dae committed Feb 15, 2016
1 parent 0f10c71 commit 38b5e5f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions drivers/gpu/drm/exynos/exynos_drm_mic.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ int exynos_mic_probe(struct platform_device *pdev)
}

for (i = 0; i < NUM_CLKS; i++) {
mic->clks[i] = of_clk_get_by_name(dev->of_node, clk_names[i]);
mic->clks[i] = devm_clk_get(dev, clk_names[i]);
if (IS_ERR(mic->clks[i])) {
DRM_ERROR("mic: Failed to get clock (%s)\n",
clk_names[i]);
Expand All @@ -463,13 +463,9 @@ int exynos_mic_probe(struct platform_device *pdev)
static int exynos_mic_remove(struct platform_device *pdev)
{
struct exynos_mic *mic = platform_get_drvdata(pdev);
int i;

drm_bridge_remove(&mic->bridge);

for (i = NUM_CLKS - 1; i > -1; i--)
clk_put(mic->clks[i]);

return 0;
}

Expand Down

0 comments on commit 38b5e5f

Please sign in to comment.