xref: /haiku/src/add-ons/kernel/bus_managers/isa/arch/arm64/isa_dma.c (revision 1a76488fc88584bf66b9751d7fb9b6527ac20d87)
1 /*
2  * Copyright 2007 Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  *
5  * arch-specific config manager
6  *
7  * Authors (in chronological order):
8  *              François Revol (revol@free.fr)
9  */
10 
11 #include <KernelExport.h>
12 #include "ISA.h"
13 #include "arch_cpu.h"
14 #include "isa_arch.h"
15 
16 
17 status_t
18 arch_start_isa_dma(long channel, void *buf, long transfer_count,
19 	uchar mode, uchar e_mode)
20 {
21 	// ToDo: implement this?!
22 	return B_NOT_ALLOWED;
23 }
24 
25 
26