mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[HIDUSB]
- Check if boot procol is supported - Don't assert on boot protocol active See issue #6886 for more details. svn path=/trunk/; revision=55571
This commit is contained in:
parent
8b553a4ba7
commit
32157dc192
1 changed files with 27 additions and 11 deletions
|
@ -1296,7 +1296,7 @@ Hid_SetIdle(
|
|||
}
|
||||
|
||||
|
||||
NTSTATUS
|
||||
VOID
|
||||
Hid_GetProtocol(
|
||||
IN PDEVICE_OBJECT DeviceObject)
|
||||
{
|
||||
|
@ -1312,6 +1312,15 @@ Hid_GetProtocol(
|
|||
DeviceExtension = (PHID_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
|
||||
HidDeviceExtension = (PHID_USB_DEVICE_EXTENSION)DeviceExtension->MiniDeviceExtension;
|
||||
|
||||
if (HidDeviceExtension->InterfaceInfo->SubClass != 0x1)
|
||||
{
|
||||
//
|
||||
// device does not support the boot protocol
|
||||
//
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// allocate urb
|
||||
//
|
||||
|
@ -1321,7 +1330,7 @@ Hid_GetProtocol(
|
|||
//
|
||||
// no memory
|
||||
//
|
||||
return STATUS_INSUFFICIENT_RESOURCES;
|
||||
return;
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -1356,15 +1365,19 @@ Hid_GetProtocol(
|
|||
ExFreePool(Urb);
|
||||
|
||||
//
|
||||
// print status
|
||||
// boot protocol active 0x00 disabled 0x1
|
||||
//
|
||||
DPRINT("Status %x Protocol %x\n", Status, Protocol[0] & 0xFF);
|
||||
|
||||
//
|
||||
// assert when boot protocol is still active
|
||||
//
|
||||
ASSERT(Protocol[0] == 0x1);
|
||||
return Status;
|
||||
if (Protocol[0] != 0x1)
|
||||
{
|
||||
if (Protocol[0] == 0x00)
|
||||
{
|
||||
DPRINT1("[HIDUSB] Need to disable boot protocol!\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
DPRINT1("[HIDUSB] Unexpected protocol value %x\n", Protocol[0] & 0xFF);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
@ -1474,6 +1487,9 @@ Hid_PnpStart(
|
|||
//
|
||||
Hid_SetIdle(DeviceObject);
|
||||
|
||||
//
|
||||
// get protocol
|
||||
//
|
||||
Hid_GetProtocol(DeviceObject);
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue