mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Implemented NdisImmediateReadPort..() and NdisImmediateWritePort...() as calls to hal's READ_PORT_xxx and WRITE_PORT_xxx
svn path=/trunk/; revision=5421
This commit is contained in:
parent
7d209b51d0
commit
d932b77179
1 changed files with 11 additions and 11 deletions
|
@ -129,7 +129,7 @@ NdisGetCacheFillSize(
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
VOID
|
||||
EXPORT
|
||||
|
@ -138,12 +138,12 @@ NdisImmediateReadPortUchar(
|
|||
IN ULONG Port,
|
||||
OUT PUCHAR Data)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
*Data = READ_PORT_UCHAR((PUCHAR)Port); // FIXME: What to do with WrapperConfigurationContext?
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
VOID
|
||||
EXPORT
|
||||
|
@ -152,12 +152,12 @@ NdisImmediateReadPortUlong(
|
|||
IN ULONG Port,
|
||||
OUT PULONG Data)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
*Data = READ_PORT_ULONG((PULONG)Port); // FIXME: What to do with WrapperConfigurationContext?
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
VOID
|
||||
EXPORT
|
||||
|
@ -166,12 +166,12 @@ NdisImmediateReadPortUshort(
|
|||
IN ULONG Port,
|
||||
OUT PUSHORT Data)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
*Data = READ_PORT_USHORT((PUSHORT)Port); // FIXME: What to do with WrapperConfigurationContext?
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
VOID
|
||||
EXPORT
|
||||
|
@ -180,12 +180,12 @@ NdisImmediateWritePortUchar(
|
|||
IN ULONG Port,
|
||||
IN UCHAR Data)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
WRITE_PORT_UCHAR((PUCHAR)Port, Data); // FIXME: What to do with WrapperConfigurationContext?
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
VOID
|
||||
EXPORT
|
||||
|
@ -194,7 +194,7 @@ NdisImmediateWritePortUlong(
|
|||
IN ULONG Port,
|
||||
IN ULONG Data)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
WRITE_PORT_ULONG((PULONG)Port, Data); // FIXME: What to do with WrapperConfigurationContext?
|
||||
}
|
||||
|
||||
|
||||
|
@ -208,7 +208,7 @@ NdisImmediateWritePortUshort(
|
|||
IN ULONG Port,
|
||||
IN USHORT Data)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
WRITE_PORT_USHORT((PUSHORT)Port, Data); // FIXME: What to do with WrapperConfigurationContext?
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue