mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
Partially implemented NdisImmediateReadPciSlotInformation() and NdisReadPciSlotInformation().
svn path=/trunk/; revision=5152
This commit is contained in:
parent
e6d0d671b8
commit
286447a2c9
1 changed files with 14 additions and 8 deletions
|
@ -11,7 +11,7 @@
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
ULONG
|
||||
EXPORT
|
||||
|
@ -22,9 +22,12 @@ NdisImmediateReadPciSlotInformation(
|
|||
IN PVOID Buffer,
|
||||
IN ULONG Length)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
|
||||
return 0;
|
||||
return HalGetBusDataByOffset (PCIConfiguration,
|
||||
0, /* FIXME */
|
||||
SlotNumber,
|
||||
Buffer,
|
||||
Offset,
|
||||
Length);
|
||||
}
|
||||
|
||||
|
||||
|
@ -124,7 +127,7 @@ NdisReadEisaSlotInformationEx(
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
ULONG
|
||||
EXPORT
|
||||
|
@ -135,9 +138,12 @@ NdisReadPciSlotInformation(
|
|||
IN PVOID Buffer,
|
||||
IN ULONG Length)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
|
||||
return 0;
|
||||
return HalGetBusDataByOffset (PCIConfiguration,
|
||||
0, /* FIXME */
|
||||
SlotNumber,
|
||||
Buffer,
|
||||
Offset,
|
||||
Length);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue