mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 23:32:58 +00:00
Partially implemented NdisImmediateReadPciSlotInformation() and NdisReadPciSlotInformation().
svn path=/trunk/; revision=5152
This commit is contained in:
parent
e6d0d671b8
commit
286447a2c9
1 changed files with 14 additions and 8 deletions
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
ULONG
|
ULONG
|
||||||
EXPORT
|
EXPORT
|
||||||
|
@ -22,9 +22,12 @@ NdisImmediateReadPciSlotInformation(
|
||||||
IN PVOID Buffer,
|
IN PVOID Buffer,
|
||||||
IN ULONG Length)
|
IN ULONG Length)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED
|
return HalGetBusDataByOffset (PCIConfiguration,
|
||||||
|
0, /* FIXME */
|
||||||
return 0;
|
SlotNumber,
|
||||||
|
Buffer,
|
||||||
|
Offset,
|
||||||
|
Length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -124,7 +127,7 @@ NdisReadEisaSlotInformationEx(
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
ULONG
|
ULONG
|
||||||
EXPORT
|
EXPORT
|
||||||
|
@ -135,9 +138,12 @@ NdisReadPciSlotInformation(
|
||||||
IN PVOID Buffer,
|
IN PVOID Buffer,
|
||||||
IN ULONG Length)
|
IN ULONG Length)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED
|
return HalGetBusDataByOffset (PCIConfiguration,
|
||||||
|
0, /* FIXME */
|
||||||
return 0;
|
SlotNumber,
|
||||||
|
Buffer,
|
||||||
|
Offset,
|
||||||
|
Length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue