root/drivers/scsi/qlogic.h

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

INCLUDED FROM


   1 #ifndef _QLOGIC_H
   2 #define _QLOGIC_H
   3 
   4 int qlogic_detect(Scsi_Host_Template * );
   5 const char * qlogic_info(void);
   6 int qlogic_command(Scsi_Cmnd *);
   7 int qlogic_queuecommand(Scsi_Cmnd *, void (* done)(Scsi_Cmnd *));
   8 int qlogic_abort(Scsi_Cmnd *);
   9 int qlogic_reset(Scsi_Cmnd *);
  10 int qlogic_biosparam(Disk *,int,int[]);
  11 
  12 #ifndef NULL
  13 #define NULL (0)
  14 #endif
  15 
  16 #define QLOGIC {                \
  17         NULL,                   \
  18         NULL,                   \
  19         qlogic_detect,          \
  20         NULL,                   \
  21         qlogic_info,            \
  22         qlogic_command,         \
  23         qlogic_queuecommand,    \
  24         qlogic_abort,           \
  25         qlogic_reset,           \
  26         NULL,                   \
  27         qlogic_biosparam,       \
  28         0,                      \
  29         -1,                     \
  30         SG_ALL,                 \
  31         1,                      \
  32         0,                      \
  33         0,                      \
  34         DISABLE_CLUSTERING      \
  35 }
  36 
  37 #endif /* _QLOGIC_H */

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