Lines Matching refs:fixed
59 struct clk_fixed_rate *fixed; in clk_hw_register_fixed_rate_with_accuracy() local
65 fixed = kzalloc(sizeof(*fixed), GFP_KERNEL); in clk_hw_register_fixed_rate_with_accuracy()
66 if (!fixed) in clk_hw_register_fixed_rate_with_accuracy()
76 fixed->fixed_rate = fixed_rate; in clk_hw_register_fixed_rate_with_accuracy()
77 fixed->fixed_accuracy = fixed_accuracy; in clk_hw_register_fixed_rate_with_accuracy()
78 fixed->hw.init = &init; in clk_hw_register_fixed_rate_with_accuracy()
81 hw = &fixed->hw; in clk_hw_register_fixed_rate_with_accuracy()
84 kfree(fixed); in clk_hw_register_fixed_rate_with_accuracy()
148 struct clk_fixed_rate *fixed; in clk_hw_unregister_fixed_rate() local
150 fixed = to_clk_fixed_rate(hw); in clk_hw_unregister_fixed_rate()
153 kfree(fixed); in clk_hw_unregister_fixed_rate()