Home
last modified time | relevance | path

Searched refs:gate_ops (Results 1 – 2 of 2) sorted by relevance

/third_party/uboot/u-boot-2020.01/drivers/clk/
Dclk-composite.c62 const struct clk_ops *gate_ops = composite->gate_ops; in clk_composite_enable() local
65 return gate_ops->enable(gate); in clk_composite_enable()
72 const struct clk_ops *gate_ops = composite->gate_ops; in clk_composite_disable() local
75 gate_ops->disable(gate); in clk_composite_disable()
91 const struct clk_ops *gate_ops, in clk_register_composite() argument
127 if (gate && gate_ops) { in clk_register_composite()
128 if (!gate_ops->enable || !gate_ops->disable) { in clk_register_composite()
134 composite->gate_ops = gate_ops; in clk_register_composite()
/third_party/uboot/u-boot-2020.01/include/linux/
Dclk-provider.h153 const struct clk_ops *gate_ops; member
162 struct clk *gate_clk, const struct clk_ops *gate_ops,