Lines Matching refs:wf_control
26 struct wf_control;
29 int (*set_value)(struct wf_control *ct, s32 val);
30 int (*get_value)(struct wf_control *ct, s32 *val);
31 s32 (*get_min)(struct wf_control *ct);
32 s32 (*get_max)(struct wf_control *ct);
33 void (*release)(struct wf_control *ct);
37 struct wf_control { struct
57 extern int wf_register_control(struct wf_control *ct); argument
58 extern void wf_unregister_control(struct wf_control *ct);
59 extern struct wf_control * wf_find_control(const char *name);
60 extern int wf_get_control(struct wf_control *ct);
61 extern void wf_put_control(struct wf_control *ct);
63 static inline int wf_control_set_max(struct wf_control *ct) in wf_control_set_max()
69 static inline int wf_control_set_min(struct wf_control *ct) in wf_control_set_min()