| D | clk.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 7 #include <linux/clk-provider.h> 90 #define imx_clk_divider(name, parent, reg, shift, width) \ argument 91 to_clk(imx_clk_hw_divider(name, parent, reg, shift, width)) 93 #define imx_clk_divider2(name, parent, reg, shift, width) \ argument 94 to_clk(imx_clk_hw_divider2(name, parent, reg, shift, width)) 96 #define imx_clk_divider_flags(name, parent, reg, shift, width, flags) \ argument 97 to_clk(imx_clk_hw_divider_flags(name, parent, reg, shift, width, flags)) 120 #define imx_clk_mux(name, reg, shift, width, parents, num_parents) \ argument 121 to_clk(imx_clk_hw_mux(name, reg, shift, width, parents, num_parents)) [all …]
|