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
+14 -8
View File
@@ -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);
}