Lines Matching refs:cond_wait
183 struct cond_wait { struct
184 struct cond_wait *next; argument
189 static void init_cond_wait(struct cond_wait *w, unsigned int data); argument
190 static void add_cond_wait(struct cond_wait **head, struct cond_wait *w);
191 static void remove_cond_wait(struct cond_wait **head, struct cond_wait *w);
192 static void flush_cond_wait(struct cond_wait **head);
271 struct cond_wait *gpio_wait_q;
2310 struct cond_wait *w, *prev; in isr_gpio()
2987 static void init_cond_wait(struct cond_wait *w, unsigned int data) in init_cond_wait()
2994 static void add_cond_wait(struct cond_wait **head, struct cond_wait *w) in add_cond_wait()
3002 static void remove_cond_wait(struct cond_wait **head, struct cond_wait *cw) in remove_cond_wait()
3004 struct cond_wait *w, *prev; in remove_cond_wait()
3018 static void flush_cond_wait(struct cond_wait **head) in flush_cond_wait()
3047 struct cond_wait wait; in wait_gpio()