]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
msm: iommu: Use clk_set_rate() instead of clk_set_min_rate()
authorStephen Boyd <sboyd@codeaurora.org>
Mon, 17 Jun 2013 17:43:13 +0000 (10:43 -0700)
committerDavid Brown <davidb@codeaurora.org>
Mon, 24 Jun 2013 20:06:42 +0000 (13:06 -0700)
Calling clk_set_min_rate() is no better than just calling
clk_set_rate() because MSM clock code already takes care of
calling the min_rate ops if the clock really needs
clk_set_min_rate() called on it.

Cc: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Acked-by: Joerg Roedel <joro@8bytes.org>
Signed-off-by: David Brown <davidb@codeaurora.org>
drivers/iommu/msm_iommu_dev.c

index d344f6ab8c12778ea4c419f29251535ca9e06da1..9144a6beed922a70c995c09099f822f02baddca2 100644 (file)
@@ -29,7 +29,6 @@
 
 #include <mach/iommu_hw-8xxx.h>
 #include <mach/iommu.h>
-#include <mach/clk.h>
 
 struct iommu_ctx_iter_data {
        /* input */
@@ -168,7 +167,7 @@ static int msm_iommu_probe(struct platform_device *pdev)
 
        if (!IS_ERR(iommu_clk)) {
                if (clk_get_rate(iommu_clk) == 0)
-                       clk_set_min_rate(iommu_clk, 1);
+                       clk_set_rate(iommu_clk, 1);
 
                ret = clk_prepare_enable(iommu_clk);
                if (ret) {