mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 07:42:59 +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
|
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 */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue