clk: tegra: Fix periph_clk_to_bit macro
authorYen Lin <yelin@nvidia.com>
Wed, 6 Mar 2013 11:47:24 +0000 (11:47 +0000)
committerStephen Warren <swarren@nvidia.com>
Thu, 4 Apr 2013 22:08:27 +0000 (16:08 -0600)
The parameter name should be "gate", not "periph".  This worked, however,
because it happens that everywhere periph_clk_to_bit is called, "gate" was
in the local scope.

Signed-off-by: Yen Lin <yelin@nvidia.com>
Signed-off-by: Andrew Chew <achew@nvidia.com>
Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de>
Reviewed-by: Prashant Gaikwad <pgaikwad@nvidia.com>
Acked-by: Peter De Schrijver <pdeschrijver@nvidia.com>
Acked-by: Mike Turquette <mturquette@linaro.org>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
drivers/clk/tegra/clk-periph-gate.c

index 6dd533251e7b103255e8edb2bb0cc87cfa60ca97..d87e1cece9fa58f72146fb09792e30884848945f 100644 (file)
@@ -41,7 +41,7 @@ static DEFINE_SPINLOCK(periph_ref_lock);
 #define write_rst_clr(val, gate) \
        writel_relaxed(val, gate->clk_base + (gate->regs->rst_clr_reg))
 
-#define periph_clk_to_bit(periph) (1 << (gate->clk_num % 32))
+#define periph_clk_to_bit(gate) (1 << (gate->clk_num % 32))
 
 /* Peripheral gate clock ops */
 static int clk_periph_is_enabled(struct clk_hw *hw)
This page took 0.028547 seconds and 5 git commands to generate.