Lines Matching refs:ops
39 const struct wf_control_ops *ops; member
64 s32 vmax = ct->ops->get_max(ct); in wf_control_set_max()
65 return ct->ops->set_value(ct, vmax); in wf_control_set_max()
70 s32 vmin = ct->ops->get_min(ct); in wf_control_set_min()
71 return ct->ops->set_value(ct, vmin); in wf_control_set_min()
76 return ct->ops->set_value(ct, val); in wf_control_set()
81 return ct->ops->get_value(ct, val); in wf_control_get()
86 return ct->ops->get_min(ct); in wf_control_get_min()
91 return ct->ops->get_max(ct); in wf_control_get_max()
108 const struct wf_sensor_ops *ops; member
123 return sr->ops->get_value(sr, val); in wf_sensor_get()