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 *, unsigned int);
  11 int u14_34f_biosparam(Disk *, kdev_t, int *);
  12 
  13 #define U14_34F_VERSION "2.10.00"
  14 
  15 #define ULTRASTOR_14_34F {                                            \
  16                 NULL, /* Ptr for modules */                           \
  17                 NULL, /* usage count for modules */                   \
  18                 NULL,                                                 \
  19                 NULL,                                                 \
  20                 "UltraStor 14F/34F rev. " U14_34F_VERSION " ",        \
  21                 u14_34f_detect,                                       \
  22                 NULL, /* Release */                                   \
  23                 NULL,                                                 \
  24                 NULL,                                                 \
  25                 u14_34f_queuecommand,                                 \
  26                 u14_34f_abort,                                        \
  27                 u14_34f_reset,                                        \
  28                 NULL,                                                 \
  29                 u14_34f_biosparam,                                    \
  30                 0,   /* can_queue, reset by detect */                 \
  31                 7,   /* this_id, reset by detect */                   \
  32                 0,   /* sg_tablesize, reset by detect */              \
  33                 0,   /* cmd_per_lun, reset by detect */               \
  34                 0,   /* number of boards present */                   \
  35                 1,   /* unchecked isa dma, reset by detect */         \
  36                 ENABLE_CLUSTERING                                     \
  37                 }
  38 #endif

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