Lines Matching defs:ops
14 static const struct clk_ops *ops;
18 assert((ops != NULL) && (ops->enable != NULL));
20 return ops->enable(id);
25 assert((ops != NULL) && (ops->disable != NULL));
27 ops->disable(id);
32 assert((ops != NULL) && (ops->get_rate != NULL));
34 return ops->get_rate(id);
39 assert((ops != NULL) && (ops->get_parent != NULL));
41 return ops->get_parent(id);
46 assert((ops != NULL) && (ops->is_enabled != NULL));
48 return ops->is_enabled(id);
53 * ops pointer must be valid.
64 ops = ops_ptr;