Partially implemented NdisImmediateReadPciSlotInformation() and NdisReadPciSlotInformation().

svn path=/trunk/; revision=5152
This commit is contained in:
Eric Kohl 2003-07-17 17:37:06 +00:00
parent e6d0d671b8
commit 286447a2c9

View file

@ -11,7 +11,7 @@
/* /*
* @unimplemented * @implemented
*/ */
ULONG ULONG
EXPORT EXPORT
@ -22,9 +22,12 @@ NdisImmediateReadPciSlotInformation(
IN PVOID Buffer, IN PVOID Buffer,
IN ULONG Length) IN ULONG Length)
{ {
UNIMPLEMENTED return HalGetBusDataByOffset (PCIConfiguration,
0, /* FIXME */
return 0; SlotNumber,
Buffer,
Offset,
Length);
} }
@ -124,7 +127,7 @@ NdisReadEisaSlotInformationEx(
/* /*
* @unimplemented * @implemented
*/ */
ULONG ULONG
EXPORT EXPORT
@ -135,9 +138,12 @@ NdisReadPciSlotInformation(
IN PVOID Buffer, IN PVOID Buffer,
IN ULONG Length) IN ULONG Length)
{ {
UNIMPLEMENTED return HalGetBusDataByOffset (PCIConfiguration,
0, /* FIXME */
return 0; SlotNumber,
Buffer,
Offset,
Length);
} }