tools/adflib: build only host variant which is used by Sam440 target
[AROS.git] / arch / m68k-amiga / devs / ata / dma_generic.c
blob29bca54194f2751b6665c2032a7fd0a2c13e34bf
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <exec/types.h>
8 #include "ata.h"
10 /* We don't need DMA support (but there has to be more optimal solution..) */
12 LONG dma_Setup(APTR addr, ULONG len, BOOL read, struct PRDEntry* array)
14 return 0;
17 BOOL dma_SetupPRD(struct ata_Unit *unit, APTR buffer, ULONG sectors, BOOL io)
19 return FALSE;
22 BOOL dma_SetupPRDSize(struct ata_Unit *unit, APTR buffer, ULONG size, BOOL read)
24 return FALSE;
27 VOID dma_Cleanup(APTR addr, ULONG len, BOOL read)
31 VOID dma_StartDMA(struct ata_Unit *unit)
35 VOID dma_StopDMA(struct ata_Unit *unit)