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