root/kernel/blk_drv/scsi/fdomain.h

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

INCLUDED FROM


   1 /* fdomain.h -- Header for Future Domain TMC-1660/TMC-1680 driver
   2  * Created: Sun May  3 18:47:33 1992
   3  * Revised: Sun Jan 10 00:54:29 1993 by root
   4  * Author: Rickard E. Faith, faith@cs.unc.edu
   5  * Copyright 1992, 1993 Rickard E. Faith
   6  * This program comes with ABSOLUTELY NO WARRANTY.
   7  *
   8  * $Log$
   9  */
  10 
  11 #ifndef _FDOMAIN_H
  12 #define _FDOMAIN_H
  13 
  14 int  fdomain_16x0_detect( int );
  15 int  fdomain_16x0_command( Scsi_Cmnd * );
  16 int  fdomain_16x0_abort( Scsi_Cmnd *, int );
  17 const char *fdomain_16x0_info( void );
  18 int  fdomain_16x0_reset( void ); 
  19 int  fdomain_16x0_queue( Scsi_Cmnd *, void (*done)(Scsi_Cmnd *) );
  20 int  fdomain_16x0_biosparam( int, int, int * );
  21 
  22 #define FDOMAIN_16X0  { "Future Domain TMC-16x0",          \
  23                          fdomain_16x0_detect,              \
  24                          fdomain_16x0_info,                \
  25                          fdomain_16x0_command,             \
  26                          fdomain_16x0_queue,               \
  27                          fdomain_16x0_abort,               \
  28                          fdomain_16x0_reset,               \
  29                          NULL,                             \
  30                          fdomain_16x0_biosparam,           \
  31                          1, 6, 64 /* SG_NONE */, 1 ,0, 0}
  32 #endif

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