Fix control msg type

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-08-20 12:22:23 +02:00
parent 9c98ae8911
commit 537f375321

View file

@ -157,7 +157,7 @@ static grub_err_t
grub_usb_keyboard_getreport (grub_usb_device_t dev, grub_uint8_t *report)
{
return grub_usb_control_msg (dev, GRUB_USB_REQTYPE_CLASS_INTERFACE_IN,
USB_HID_GET_REPORT, 0, 0, 8, (char *) report);
USB_HID_GET_REPORT, 0x0100, 0, 8, (char *) report);
}