Lines Matching refs:cond_wait
184 struct cond_wait { struct
185 struct cond_wait *next; argument
190 static void init_cond_wait(struct cond_wait *w, unsigned int data); argument
191 static void add_cond_wait(struct cond_wait **head, struct cond_wait *w);
192 static void remove_cond_wait(struct cond_wait **head, struct cond_wait *w);
193 static void flush_cond_wait(struct cond_wait **head);
272 struct cond_wait *gpio_wait_q;
2347 struct cond_wait *w, *prev; in isr_gpio()
3031 static void init_cond_wait(struct cond_wait *w, unsigned int data) in init_cond_wait()
3038 static void add_cond_wait(struct cond_wait **head, struct cond_wait *w) in add_cond_wait()
3046 static void remove_cond_wait(struct cond_wait **head, struct cond_wait *cw) in remove_cond_wait()
3048 struct cond_wait *w, *prev; in remove_cond_wait()
3062 static void flush_cond_wait(struct cond_wait **head) in flush_cond_wait()
3091 struct cond_wait wait; in wait_gpio()