tools headers UAPI: Sync kvm.h headers with the kernel sources
[linux-2.6-microblaze.git] / drivers / clk / qcom / lpass-gfm-sm8250.c
index d366c7c..f5e31e6 100644 (file)
@@ -33,14 +33,13 @@ struct clk_gfm {
        void __iomem *gfm_mux;
 };
 
-#define GFM_MASK       BIT(1)
 #define to_clk_gfm(_hw) container_of(_hw, struct clk_gfm, hw)
 
 static u8 clk_gfm_get_parent(struct clk_hw *hw)
 {
        struct clk_gfm *clk = to_clk_gfm(hw);
 
-       return readl(clk->gfm_mux) & GFM_MASK;
+       return readl(clk->gfm_mux) & clk->mux_mask;
 }
 
 static int clk_gfm_set_parent(struct clk_hw *hw, u8 index)
@@ -51,9 +50,10 @@ static int clk_gfm_set_parent(struct clk_hw *hw, u8 index)
        val = readl(clk->gfm_mux);
 
        if (index)
-               val |= GFM_MASK;
+               val |= clk->mux_mask;
        else
-               val &= ~GFM_MASK;
+               val &= ~clk->mux_mask;
+
 
        writel(val, clk->gfm_mux);