Lines Matching defs:work
54 struct delayed_work work;
195 schedule_delayed_work(&ir->work, msecs_to_jiffies(URB_SUBMIT_DELAY));
213 schedule_delayed_work(&ir->work, msecs_to_jiffies(10));
216 static void tm6000_ir_handle_key(struct work_struct *work)
218 struct tm6000_IR *ir = container_of(work, struct tm6000_IR, work.work);
248 schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
251 static void tm6000_ir_int_work(struct work_struct *work)
253 struct tm6000_IR *ir = container_of(work, struct tm6000_IR, work.work);
269 schedule_delayed_work(&ir->work, msecs_to_jiffies(URB_SUBMIT_DELAY));
279 schedule_delayed_work(&ir->work, msecs_to_jiffies(URB_INT_LED_DELAY));
292 schedule_delayed_work(&ir->work, 0);
303 cancel_delayed_work_sync(&ir->work);
359 schedule_delayed_work(&ir->work, msecs_to_jiffies(URB_SUBMIT_DELAY));
436 INIT_DELAYED_WORK(&ir->work, tm6000_ir_int_work);
441 INIT_DELAYED_WORK(&ir->work, tm6000_ir_handle_key);