home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / KERNEL-S / V1.0 / LINUX-1.0 / LINUX-1 / linux / drivers / scsi / fdomain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-05  |  1.6 KB  |  43 lines

  1. /* fdomain.h -- Header for Future Domain TMC-16x0 driver
  2.  * Created: Sun May  3 18:47:33 1992 by faith@cs.unc.edu
  3.  * Revised: Tue Jan  4 20:44:04 1994 by faith@cs.unc.edu
  4.  * Author: Rickard E. Faith, faith@cs.unc.edu
  5.  * Copyright 1992, 1993, 1994 Rickard E. Faith
  6.  *
  7.  * $Id: fdomain.h,v 5.3 1994/01/05 01:44:16 root Exp $
  8.  
  9.  * This program is free software; you can redistribute it and/or modify it
  10.  * under the terms of the GNU General Public License as published by the
  11.  * Free Software Foundation; either version 2, or (at your option) any
  12.  * later version.
  13.  
  14.  * This program is distributed in the hope that it will be useful, but
  15.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17.  * General Public License for more details.
  18.  
  19.  */
  20.  
  21. #ifndef _FDOMAIN_H
  22. #define _FDOMAIN_H
  23.  
  24. int        fdomain_16x0_detect( int );
  25. int        fdomain_16x0_command( Scsi_Cmnd * );
  26. int        fdomain_16x0_abort( Scsi_Cmnd *, int );
  27. const char *fdomain_16x0_info( void );
  28. int        fdomain_16x0_reset( Scsi_Cmnd * ); 
  29. int        fdomain_16x0_queue( Scsi_Cmnd *, void (*done)(Scsi_Cmnd *) );
  30. int        fdomain_16x0_biosparam( int, int, int * );
  31.  
  32. #define FDOMAIN_16X0 { "Future Domain TMC-16x0",          \
  33.             fdomain_16x0_detect,              \
  34.                 fdomain_16x0_info,                \
  35.                 fdomain_16x0_command,             \
  36.                 fdomain_16x0_queue,               \
  37.                 fdomain_16x0_abort,               \
  38.                 fdomain_16x0_reset,               \
  39.                 NULL,                             \
  40.                 fdomain_16x0_biosparam,           \
  41.                 1, 6, 64 /* SG_NONE */, 1 ,0, 0 }
  42. #endif
  43.