clk-fractional-divider.h 367 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _CLK_FRACTIONAL_DIV_H
  3. #define _CLK_FRACTIONAL_DIV_H
  4. struct clk_hw;
  5. extern const struct clk_ops clk_fractional_divider_ops;
  6. void clk_fractional_divider_general_approximation(struct clk_hw *hw,
  7. unsigned long rate,
  8. unsigned long *parent_rate,
  9. unsigned long *m,
  10. unsigned long *n);
  11. #endif