Lines Matching defs:work
50 * @work: work structure to set the vibration parameters
60 struct work_struct work;
100 * @work: pointer to work_struct
102 static void pm8xxx_work_handler(struct work_struct *work)
104 struct pm8xxx_vib *vib = container_of(work, struct pm8xxx_vib, work);
140 cancel_work_sync(&vib->work);
162 schedule_work(&vib->work);
187 INIT_WORK(&vib->work, pm8xxx_work_handler);