Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.2-rc8 15 lines 367 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _CLK_FRACTIONAL_DIV_H 3#define _CLK_FRACTIONAL_DIV_H 4 5struct clk_hw; 6 7extern const struct clk_ops clk_fractional_divider_ops; 8 9void clk_fractional_divider_general_approximation(struct clk_hw *hw, 10 unsigned long rate, 11 unsigned long *parent_rate, 12 unsigned long *m, 13 unsigned long *n); 14 15#endif