Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _CLK_FRACTIONAL_DIV_H
0003 #define _CLK_FRACTIONAL_DIV_H
0004 
0005 struct clk_hw;
0006 
0007 extern const struct clk_ops clk_fractional_divider_ops;
0008 
0009 void clk_fractional_divider_general_approximation(struct clk_hw *hw,
0010                           unsigned long rate,
0011                           unsigned long *parent_rate,
0012                           unsigned long *m,
0013                           unsigned long *n);
0014 
0015 #endif