mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +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
|
||||
NTAPI
|
||||
|
@ -4129,6 +4129,11 @@ IoTranslateBusAddress(IN INTERFACE_TYPE InterfaceType,
|
|||
IN OUT PULONG AddressSpace,
|
||||
OUT PPHYSICAL_ADDRESS TranslatedAddress)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
/* FIXME: Notify the resource arbiter */
|
||||
|
||||
return HalTranslateBusAddress(InterfaceType,
|
||||
BusNumber,
|
||||
BusAddress,
|
||||
AddressSpace,
|
||||
TranslatedAddress);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue