Lines Matching defs:work
25 * @work: Work fired by the interrupt.
36 struct delayed_work work;
44 static void gpio_extcon_work(struct work_struct *work)
48 container_of(to_delayed_work(work), struct gpio_extcon_data,
49 work);
59 queue_delayed_work(system_power_efficient_wq, &data->work,
115 INIT_DELAYED_WORK(&data->work, gpio_extcon_work);
129 gpio_extcon_work(&data->work.work);
138 cancel_delayed_work_sync(&data->work);
151 &data->work, data->debounce_jiffies);