mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Partially implemented NdisImmediateWritePciSlotInformation() and NdisWritePciSlotInformation().
svn path=/trunk/; revision=5153
This commit is contained in:
parent
286447a2c9
commit
5e00b52f0a
1 changed files with 14 additions and 8 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue