Lines Matching refs:mf
37 struct mf_device *mf = data;
50 mf->report->field[0]->value[0] = weak;
51 mf->report->field[0]->value[1] = strong;
52 hid_hw_request(hid, mf->report, HID_REQ_SET_REPORT);
59 struct mf_device *mf;
91 mf = kzalloc(sizeof(struct mf_device), GFP_KERNEL);
92 if (!mf)
98 error = input_ff_create_memless(dev, mf, mf_play);
100 kfree(mf);
104 mf->report = report;
105 mf->report->field[0]->value[0] = 0x00;
106 mf->report->field[0]->value[1] = 0x00;
107 hid_hw_request(hid, mf->report, HID_REQ_SET_REPORT);