Lines Matching refs:holtekff
75 static void holtekff_send(struct holtekff_device *holtekff,
82 holtekff->field->value[i] = data[i];
87 hid_hw_request(hid, holtekff->field->report, HID_REQ_SET_REPORT);
94 struct holtekff_device *holtekff = data;
105 holtekff_send(holtekff, hid, stop_all6);
117 holtekff_send(holtekff, hid, buf);
118 holtekff_send(holtekff, hid, start_effect_1);
125 struct holtekff_device *holtekff;
152 holtekff = kzalloc(sizeof(*holtekff), GFP_KERNEL);
153 if (!holtekff)
158 holtekff->field = report->field[0];
161 holtekff_send(holtekff, hid, stop_all4);
162 holtekff_send(holtekff, hid, stop_all6);
164 error = input_ff_create_memless(dev, holtekff, holtekff_play);
166 kfree(holtekff);