mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +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;
|
||||
}
|
||||
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)
|
||||
{
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue