mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[USBOHCI]
- Fix device enumeration on boot svn path=/branches/usb-bringup-trunk/; revision=55380
This commit is contained in:
parent
e2654208c6
commit
087dfd04c9
1 changed files with 8 additions and 3 deletions
|
@ -1349,10 +1349,15 @@ CUSBHardwareDevice::SetPortFeature(
|
|||
KeDelayExecutionThread(KernelMode, FALSE, &Timeout);
|
||||
|
||||
//
|
||||
// trigger the status change interrupt
|
||||
// is there a status change callback
|
||||
//
|
||||
WRITE_REGISTER_ULONG((PULONG)((PUCHAR)m_Base + OHCI_INTERRUPT_ENABLE_OFFSET), OHCI_ROOT_HUB_STATUS_CHANGE);
|
||||
|
||||
if (m_SCECallBack != NULL)
|
||||
{
|
||||
//
|
||||
// issue callback
|
||||
//
|
||||
m_SCECallBack(m_SCEContext);
|
||||
}
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
return STATUS_SUCCESS;
|
||||
|
|
Loading…
Reference in a new issue