root/drivers/scsi/u14-34f.h

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

INCLUDED FROM


   1 /*
   2  *   u14-34f.h - used by the low-level driver for UltraStor 14F/34F
   3  */
   4 #ifndef _U14_34F_H
   5 #define _U14_34F_H
   6 
   7 int u14_34f_detect(Scsi_Host_Template *);
   8 int u14_34f_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
   9 int u14_34f_abort(Scsi_Cmnd *);
  10 int u14_34f_reset(Scsi_Cmnd *);
  11 int u14_34f_biosparam(Disk *, int, int *);
  12 
  13 #define U14_34F_VERSION "2.01.00"
  14 
  15 #define ULTRASTOR_14_34F {                                            \
  16                 NULL, /* Ptr for modules */                           \
  17                 NULL, /* usage count for modules */                   \
  18                 NULL,                                                 \
  19                 "u14_34f",                                            \
  20                 PROC_SCSI_U14_34F,                                    \
  21                 "UltraStor 14F/34F rev. " U14_34F_VERSION " ",        \
  22                 u14_34f_detect,                                       \
  23                 NULL, /* Release */                                   \
  24                 NULL,                                                 \
  25                 NULL,                                                 \
  26                 u14_34f_queuecommand,                                 \
  27                 u14_34f_abort,                                        \
  28                 u14_34f_reset,                                        \
  29                 NULL,                                                 \
  30                 u14_34f_biosparam,                                    \
  31                 0,   /* can_queue, reset by detect */                 \
  32                 7,   /* this_id, reset by detect */                   \
  33                 0,   /* sg_tablesize, reset by detect */              \
  34                 0,   /* cmd_per_lun, reset by detect */               \
  35                 0,   /* number of boards present */                   \
  36                 1,   /* unchecked isa dma, reset by detect */         \
  37                 ENABLE_CLUSTERING                                     \
  38                 }
  39 #endif

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