mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 05:00:27 +00:00
[USBOHCI]
- Queue a work item to handle an enable status change condition svn path=/trunk/; revision=55739
This commit is contained in:
parent
bc411bd0a0
commit
07f816a3f9
1 changed files with 12 additions and 0 deletions
|
@ -1634,6 +1634,18 @@ OhciDefferedRoutine(
|
||||||
//
|
//
|
||||||
QueueSCEWorkItem = TRUE;
|
QueueSCEWorkItem = TRUE;
|
||||||
}
|
}
|
||||||
|
else if (PortStatus & OHCI_RH_PORTSTATUS_PESC)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// device disconnected or some error condition
|
||||||
|
//
|
||||||
|
ASSERT(!(PortStatus & OHCI_RH_PORTSTATUS_PES));
|
||||||
|
|
||||||
|
//
|
||||||
|
// work to do
|
||||||
|
//
|
||||||
|
QueueSCEWorkItem = TRUE;
|
||||||
|
}
|
||||||
else if (PortStatus & OHCI_RH_PORTSTATUS_PRSC)
|
else if (PortStatus & OHCI_RH_PORTSTATUS_PRSC)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue