Partially implemented NdisImmediateWritePciSlotInformation() and NdisWritePciSlotInformation().

svn path=/trunk/; revision=5153
This commit is contained in:
Eric Kohl 2003-07-17 18:17:55 +00:00
parent 286447a2c9
commit 5e00b52f0a

View file

@ -32,7 +32,7 @@ NdisImmediateReadPciSlotInformation(
/* /*
* @unimplemented * @implemented
*/ */
ULONG ULONG
EXPORT EXPORT
@ -43,9 +43,12 @@ NdisImmediateWritePciSlotInformation(
IN PVOID Buffer, IN PVOID Buffer,
IN ULONG Length) IN ULONG Length)
{ {
UNIMPLEMENTED return HalSetBusDataByOffset (PCIConfiguration,
0, /* FIXME */
return 0; SlotNumber,
Buffer,
Offset,
Length);
} }
@ -148,7 +151,7 @@ NdisReadPciSlotInformation(
/* /*
* @unimplemented * @implemented
*/ */
ULONG ULONG
EXPORT EXPORT
@ -159,9 +162,12 @@ NdisWritePciSlotInformation(
IN PVOID Buffer, IN PVOID Buffer,
IN ULONG Length) IN ULONG Length)
{ {
UNIMPLEMENTED return HalSetBusDataByOffset (PCIConfiguration,
0, /* FIXME */
return 0; SlotNumber,
Buffer,
Offset,
Length);
} }
/* EOF */ /* EOF */