mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +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 */
|
/* Memory address */
|
||||||
case 0:
|
case 0:
|
||||||
|
|
||||||
/* Loop all prefetech memory */
|
/* Loop all prefetch memory */
|
||||||
for (Range = &BusHandler->BusAddresses->PrefetchMemory;
|
for (Range = &BusHandler->BusAddresses->PrefetchMemory;
|
||||||
Range;
|
Range;
|
||||||
Range = Range->Next)
|
Range = Range->Next)
|
||||||
|
|
|
@ -1266,7 +1266,7 @@ HaliTranslateBusAddress(IN INTERFACE_TYPE InterfaceType,
|
||||||
Handler = HalReferenceHandlerForBus(InterfaceType, BusNumber);
|
Handler = HalReferenceHandlerForBus(InterfaceType, BusNumber);
|
||||||
if (!(Handler) || !(Handler->TranslateBusAddress))
|
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;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue