Lines Matching defs:notif
212 struct gpio_notification *notif =
215 guard(mutex)(¬if->mutex);
216 if (notif->notify)
217 notif->notify(notif->data);
302 struct gpio_notification *notif = data;
304 schedule_delayed_work(¬if->work, 0);
314 struct gpio_notification *notif;
322 notif = &rt->headphone_notify;
327 notif = &rt->line_in_notify;
332 notif = &rt->line_out_notify;
343 guard(mutex)(¬if->mutex);
345 old = notif->notify;
351 if (old == notify && notif->data == data)
357 free_irq(irq, notif);
360 err = request_irq(irq, ftr_handle_notify_irq, 0, name, notif);
365 notif->notify = notify;
366 notif->data = data;