mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
- Implement NdisMDeregisterDmaChannel
- My branch needs to be synced with trunk so I'm not using it right now (plus these changes aren't likely to break anything) svn path=/trunk/; revision=40107
This commit is contained in:
parent
d94693c32a
commit
fed96b0d69
1 changed files with 7 additions and 2 deletions
|
@ -525,14 +525,19 @@ NdisMCompleteBufferPhysicalMapping(
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
VOID
|
||||
EXPORT
|
||||
NdisMDeregisterDmaChannel(
|
||||
IN PNDIS_HANDLE MiniportDmaHandle)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
PNDIS_MINIPORT_BLOCK NdisMiniportBlock = (PNDIS_MINIPORT_BLOCK)MiniportDmaHandle;
|
||||
PDMA_ADAPTER AdapterObject = NdisMiniportBlock->SystemAdapterObject;
|
||||
|
||||
AdapterObject->DmaOperations->PutDmaAdapter(AdapterObject);
|
||||
|
||||
NdisMiniportBlock->SystemAdapterObject = NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue