Removed broken dma code
[reactos.git] / reactos / ntoskrnl / hal / x86 / adapter.c
1 /* $Id: adapter.c,v 1.2 2000/07/19 14:18:18 dwelch Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: hal/x86/adapter.c (from ntoskrnl/io/adapter.c)
6 * PURPOSE: DMA handling
7 * PROGRAMMER: David Welch (welch@mcmail.com)
8 * UPDATE HISTORY:
9 * Created 22/05/98
10 */
11
12 /* INCLUDES *****************************************************************/
13
14 #include <ddk/ntddk.h>
15
16 #include <internal/debug.h>
17
18 /* FUNCTIONS *****************************************************************/
19
20 /* NOTE: IoAllocateAdapterChannel in NTOSKRNL.EXE */
21
22 BOOLEAN STDCALL
23 IoFlushAdapterBuffers (PADAPTER_OBJECT AdapterObject,
24 PMDL Mdl,
25 PVOID MapRegisterBase,
26 PVOID CurrentVa,
27 ULONG Length,
28 BOOLEAN WriteToDevice)
29 {
30 UNIMPLEMENTED;
31 }
32
33
34 VOID STDCALL
35 IoFreeAdapterChannel (PADAPTER_OBJECT AdapterObject)
36 {
37 UNIMPLEMENTED;
38 }
39
40
41 VOID STDCALL
42 IoFreeMapRegisters (PADAPTER_OBJECT AdapterObject,
43 PVOID MapRegisterBase,
44 ULONG NumberOfMapRegisters)
45 {
46 UNIMPLEMENTED;
47 }
48
49
50 PHYSICAL_ADDRESS STDCALL
51 IoMapTransfer (PADAPTER_OBJECT AdapterObject,
52 PMDL Mdl,
53 PVOID MapRegisterBase,
54 PVOID CurrentVa,
55 PULONG Length,
56 BOOLEAN WriteToDevice)
57 {
58 UNIMPLEMENTED;
59 }
60
61
62 /* EOF */