usbhid: How to wait for response after submitting report

From: Adam Nielsen
Date: Fri Mar 12 2010 - 22:10:48 EST


Hi all,

I'm working on a USB HID driver, but my driver seems to be receiving bad data.
I think it's because usbhid_submit_report is non-blocking and I'm not
correctly waiting for a response. I'm not sure though, because none of the
existing usbhid drivers seem to work in this way.

Could someone please let me know if I'm going about this the right way?

odin_psu->report->field[0]->value[0] = msg;
odin_psu->report->field[0]->value[1] = 0x01;

usbhid_submit_report(odin_psu->hdev, odin_psu->report, USB_DIR_OUT);
usbhid_wait_io(odin_psu->hdev);

usbhid_submit_report(odin_psu->hdev, odin_psu->report_in, USB_DIR_IN);
usbhid_wait_io(odin_psu->hdev);

Many thanks,
Adam.

(Please CC)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/