mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:03:02 +00:00
[NTOSKRNL]
- Implement IoTranslateBusAddress svn path=/trunk/; revision=52019
This commit is contained in:
parent
57bc8f07bf
commit
48c9bead3d
1 changed files with 8 additions and 3 deletions
|
@ -4119,7 +4119,7 @@ IoSynchronousInvalidateDeviceRelations(
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
NTAPI
|
NTAPI
|
||||||
|
@ -4129,6 +4129,11 @@ IoTranslateBusAddress(IN INTERFACE_TYPE InterfaceType,
|
||||||
IN OUT PULONG AddressSpace,
|
IN OUT PULONG AddressSpace,
|
||||||
OUT PPHYSICAL_ADDRESS TranslatedAddress)
|
OUT PPHYSICAL_ADDRESS TranslatedAddress)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
/* FIXME: Notify the resource arbiter */
|
||||||
return FALSE;
|
|
||||||
|
return HalTranslateBusAddress(InterfaceType,
|
||||||
|
BusNumber,
|
||||||
|
BusAddress,
|
||||||
|
AddressSpace,
|
||||||
|
TranslatedAddress);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue