Home | History | Annotate | Line # | Download | only in ata
ataconf.h revision 1.1.72.1
      1  1.1.72.1  skrll /*	$NetBSD: ataconf.h,v 1.1.72.1 2009/01/19 13:17:52 skrll Exp $	*/
      2       1.1  itohy 
      3       1.1  itohy /*
      4       1.1  itohy  * Written in 2006 by ITOH Yasufumi.
      5       1.1  itohy  * Public domain.
      6       1.1  itohy  */
      7       1.1  itohy 
      8       1.1  itohy #ifndef _DEV_ATA_ATACONF_H_
      9       1.1  itohy #define _DEV_ATA_ATACONF_H_
     10       1.1  itohy 
     11  1.1.72.1  skrll #if !defined(_KERNEL_OPT) || defined(MODULAR)
     12       1.1  itohy 
     13  1.1.72.1  skrll /* compile-in everything for module or module-enabled kernel */
     14       1.1  itohy # define NATA_DMA	1
     15       1.1  itohy # define NATA_UDMA	1
     16       1.1  itohy # define NATA_PIOBM	1
     17       1.1  itohy 
     18       1.1  itohy #else
     19       1.1  itohy 
     20       1.1  itohy # include "ata_dma.h"
     21       1.1  itohy # if NATA_UDMA > 1 && NATA_DMA == 0
     22       1.1  itohy    #error ata_udma requires ata_dma
     23       1.1  itohy # endif
     24       1.1  itohy 
     25       1.1  itohy #endif
     26       1.1  itohy 
     27       1.1  itohy #endif /* _DEV_ATA_ATACONF_H_ */
     28