Lines Matching defs:plldiv
25 struct clk_plldiv *plldiv = to_clk_plldiv(hw);
28 regmap_read(plldiv->regmap, AT91_PMC_MCKR, &mckr);
56 struct clk_plldiv *plldiv = to_clk_plldiv(hw);
61 regmap_update_bits(plldiv->regmap, AT91_PMC_MCKR, AT91_PMC_PLLADIV2,
77 struct clk_plldiv *plldiv;
82 plldiv = kzalloc(sizeof(*plldiv), GFP_KERNEL);
83 if (!plldiv)
92 plldiv->hw.init = &init;
93 plldiv->regmap = regmap;
95 hw = &plldiv->hw;
96 ret = clk_hw_register(NULL, &plldiv->hw);
98 kfree(plldiv);