root/drivers/scsi/eata.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  *      eata.h - used by the low-level driver for EATA/DMA SCSI host adapters.
   3  */
   4 #ifndef _EATA_H
   5 #define _EATA_H
   6 
   7 #include <linux/scsicam.h>
   8 
   9 int eata2x_detect(Scsi_Host_Template *);
  10 int eata2x_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  11 int eata2x_abort(Scsi_Cmnd *);
  12 int eata2x_reset(Scsi_Cmnd *, unsigned int);
  13 
  14 #define EATA_VERSION "2.10.00"
  15 
  16 
  17 #define EATA {                                                 \
  18                 NULL, /* Ptr for modules */                    \
  19                 NULL, /* usage count for modules */            \
  20                 NULL,                                          \
  21                 NULL,                                          \
  22                 "EATA/DMA 2.0x rev. " EATA_VERSION " ",        \
  23                 eata2x_detect,                                 \
  24                 NULL, /* Release */                            \
  25                 NULL,                                          \
  26                 NULL,                                          \
  27                 eata2x_queuecommand,                           \
  28                 eata2x_abort,                                  \
  29                 eata2x_reset,                                  \
  30                 NULL,                                          \
  31                 scsicam_bios_param,                            \
  32                 0,   /* can_queue, reset by detect */          \
  33                 7,   /* this_id, reset by detect */            \
  34                 0,   /* sg_tablesize, reset by detect */       \
  35                 0,   /* cmd_per_lun, reset by detect */        \
  36                 0,   /* number of boards present */            \
  37                 1,   /* unchecked isa dma, reset by detect */  \
  38                 ENABLE_CLUSTERING                              \
  39                 }
  40 #endif

/* [previous][next][first][last][top][bottom][index][help] */