Lines Matching refs:holtekff
91 static void holtekff_send(struct holtekff_device *holtekff, in holtekff_send() argument
98 holtekff->field->value[i] = data[i]; in holtekff_send()
103 hid_hw_request(hid, holtekff->field->report, HID_REQ_SET_REPORT); in holtekff_send()
110 struct holtekff_device *holtekff = data; in holtekff_play() local
121 holtekff_send(holtekff, hid, stop_all6); in holtekff_play()
133 holtekff_send(holtekff, hid, buf); in holtekff_play()
134 holtekff_send(holtekff, hid, start_effect_1); in holtekff_play()
141 struct holtekff_device *holtekff; in holtekff_init() local
162 holtekff = kzalloc(sizeof(*holtekff), GFP_KERNEL); in holtekff_init()
163 if (!holtekff) in holtekff_init()
168 holtekff->field = report->field[0]; in holtekff_init()
171 holtekff_send(holtekff, hid, stop_all4); in holtekff_init()
172 holtekff_send(holtekff, hid, stop_all6); in holtekff_init()
174 error = input_ff_create_memless(dev, holtekff, holtekff_play); in holtekff_init()
176 kfree(holtekff); in holtekff_init()