Lines Matching refs:fixed
62 struct clk_fixed_rate *fixed; in clk_hw_register_fixed_rate_with_accuracy() local
68 fixed = kzalloc(sizeof(*fixed), GFP_KERNEL); in clk_hw_register_fixed_rate_with_accuracy()
69 if (!fixed) in clk_hw_register_fixed_rate_with_accuracy()
79 fixed->fixed_rate = fixed_rate; in clk_hw_register_fixed_rate_with_accuracy()
80 fixed->fixed_accuracy = fixed_accuracy; in clk_hw_register_fixed_rate_with_accuracy()
81 fixed->hw.init = &init; in clk_hw_register_fixed_rate_with_accuracy()
84 hw = &fixed->hw; in clk_hw_register_fixed_rate_with_accuracy()
87 kfree(fixed); in clk_hw_register_fixed_rate_with_accuracy()
151 struct clk_fixed_rate *fixed; in clk_hw_unregister_fixed_rate() local
153 fixed = to_clk_fixed_rate(hw); in clk_hw_unregister_fixed_rate()
156 kfree(fixed); in clk_hw_unregister_fixed_rate()