Lines Matching refs:pll_div
720 struct stm32f4_pll_div *pll_div = to_pll_div_clk(div);
722 pll_state = stm32f4_pll_is_enabled(pll_div->hw_pll);
725 stm32f4_pll_disable(pll_div->hw_pll);
730 stm32f4_pll_enable(pll_div->hw_pll);
747 struct stm32f4_pll_div *pll_div;
753 pll_div = kzalloc(sizeof(*pll_div), GFP_KERNEL);
754 if (!pll_div)
764 pll_div->div.reg = reg;
765 pll_div->div.shift = shift;
766 pll_div->div.width = width;
767 pll_div->div.flags = clk_divider_flags;
768 pll_div->div.lock = lock;
769 pll_div->div.table = table;
770 pll_div->div.hw.init = &init;
772 pll_div->hw_pll = pll_hw;
775 hw = &pll_div->div.hw;
778 kfree(pll_div);