mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[HAL]
fix a typo add BusAddress to DPRINT svn path=/trunk/; revision=68030
This commit is contained in:
parent
b0c5426a7c
commit
451c233f29
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ HalpTranslateSystemBusAddress(IN PBUS_HANDLER BusHandler,
|
|||
/* Memory address */
|
||||
case 0:
|
||||
|
||||
/* Loop all prefetech memory */
|
||||
/* Loop all prefetch memory */
|
||||
for (Range = &BusHandler->BusAddresses->PrefetchMemory;
|
||||
Range;
|
||||
Range = Range->Next)
|
||||
|
|
|
@ -1266,7 +1266,7 @@ HaliTranslateBusAddress(IN INTERFACE_TYPE InterfaceType,
|
|||
Handler = HalReferenceHandlerForBus(InterfaceType, BusNumber);
|
||||
if (!(Handler) || !(Handler->TranslateBusAddress))
|
||||
{
|
||||
DPRINT1("No translator Interface: %x, Bus: %x, Handler: %p!\n", InterfaceType, BusNumber, Handler);
|
||||
DPRINT1("No translator Interface: %x, Bus: %x, Handler: %p, BusAddress: %x!\n", InterfaceType, BusNumber, Handler, BusAddress);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue