Lines Matching refs:fh
31 struct mtk_fh *fh = to_mtk_fh(hw);
37 return fh->ops->hopping(fh, pcw, postdiv);
115 static int pllfh_init(struct mtk_fh *fh, struct mtk_pllfh_data *pllfh_data)
117 struct fh_pll_regs *regs = &fh->regs;
138 fh->pllfh_data = pllfh_data;
139 fh->lock = &pllfh_lock;
141 fh->ops = fhctl_get_ops();
156 struct mtk_fh *fh;
159 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
160 if (!fh)
163 ret = pllfh_init(fh, pllfh_data);
169 hw = mtk_clk_register_pll_ops(&fh->clk_pll, pll_data, base,
175 fhctl_hw_init(fh);
179 kfree(fh);
186 struct mtk_fh *fh;
191 fh = to_mtk_fh(hw);
194 kfree(fh);