Lines Matching refs:betopff
44 struct betopff_device *betopff = data; in hid_betopff_play() local
50 betopff->report->field[2]->value[0] = left / 256; in hid_betopff_play()
51 betopff->report->field[3]->value[0] = right / 256; in hid_betopff_play()
53 hid_hw_request(hid, betopff->report, HID_REQ_SET_REPORT); in hid_betopff_play()
60 struct betopff_device *betopff; in betopff_init() local
98 betopff = kzalloc(sizeof(*betopff), GFP_KERNEL); in betopff_init()
99 if (!betopff) in betopff_init()
104 error = input_ff_create_memless(dev, betopff, hid_betopff_play); in betopff_init()
106 kfree(betopff); in betopff_init()
110 betopff->report = report; in betopff_init()
111 hid_hw_request(hid, betopff->report, HID_REQ_SET_REPORT); in betopff_init()