mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[USBOHCI]
- Fix a broken assertion and print out the alignment mask and HCCA pointer svn path=/trunk/; revision=55845
This commit is contained in:
parent
17b865ebc2
commit
0e05873866
1 changed files with 2 additions and 1 deletions
|
@ -588,7 +588,8 @@ CUSBHardwareDevice::StartController(void)
|
|||
WRITE_REGISTER_ULONG((PULONG)((PUCHAR)m_Base + OHCI_HCCA_OFFSET), 0xFFFFFFFF);
|
||||
KeStallExecutionProcessor(10);
|
||||
Control = READ_REGISTER_ULONG((PULONG)((PUCHAR)m_Base + OHCI_HCCA_OFFSET));
|
||||
ASSERT((m_HCCAPhysicalAddress.LowPart & Control) == Control);
|
||||
ASSERT((m_HCCAPhysicalAddress.LowPart & Control) == m_HCCAPhysicalAddress.LowPart);
|
||||
DPRINT1("HCCA: %x Alignment mask: %x\n", m_HCCAPhysicalAddress.LowPart, Control);
|
||||
|
||||
//
|
||||
// write address of HCCA
|
||||
|
|
Loading…
Reference in a new issue