Lines Matching defs:onecell
35 struct clk_hw_onecell_data *onecell;
61 onecell = kzalloc(struct_size(onecell, hws, BOSTON_CLK_COUNT),
63 if (!onecell)
66 onecell->num = BOSTON_CLK_COUNT;
73 onecell->hws[BOSTON_CLK_INPUT] = hw;
80 onecell->hws[BOSTON_CLK_SYS] = hw;
87 onecell->hws[BOSTON_CLK_CPU] = hw;
89 err = of_clk_add_hw_provider(np, of_clk_hw_onecell_get, onecell);
98 clk_hw_unregister_fixed_rate(onecell->hws[BOSTON_CLK_CPU]);
100 clk_hw_unregister_fixed_rate(onecell->hws[BOSTON_CLK_SYS]);
102 clk_hw_unregister_fixed_rate(onecell->hws[BOSTON_CLK_INPUT]);
104 kfree(onecell);