fd_mcs.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* fd_mcs.h -- Header for Future Domain MCS 600/700 (or IBM OEM) driver
  2.  * 
  3.  * fd_mcs.h v0.2 03/11/1998 ZP Gu (zpg@castle.net)
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License as published by the
  7.  * Free Software Foundation; either version 2, or (at your option) any
  8.  * later version.
  9.  * This program is distributed in the hope that it will be useful, but
  10.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * General Public License for more details.
  13.  * You should have received a copy of the GNU General Public License along
  14.  * with this program; if not, write to the Free Software Foundation, Inc.,
  15.  * 675 Mass Ave, Cambridge, MA 02139, USA.
  16.  */
  17. #ifndef _FD_MCS_H
  18. #define _FD_MCS_H
  19. extern int fd_mcs_detect( Scsi_Host_Template * );
  20. extern int fd_mcs_release( struct Scsi_Host * );
  21. extern int fd_mcs_command( Scsi_Cmnd * );
  22. extern int fd_mcs_abort( Scsi_Cmnd * );
  23. extern int fd_mcs_reset( Scsi_Cmnd *, unsigned int );
  24. extern int fd_mcs_queue( Scsi_Cmnd *, void (*done)(Scsi_Cmnd *) );
  25. extern int fd_mcs_biosparam( Disk *, kdev_t, int * );
  26. extern int fd_mcs_proc_info( char *, char **, off_t, int, int, int );
  27. extern const char *fd_mcs_info(struct Scsi_Host *);
  28. #define FD_MCS {
  29.                     proc_name:      "fd_mcs",                   
  30.                     proc_info:      fd_mcs_proc_info,           
  31.     detect:         fd_mcs_detect,              
  32.     release:        fd_mcs_release,             
  33.     info:           fd_mcs_info,                
  34.     command:        fd_mcs_command,             
  35.     queuecommand:   fd_mcs_queue,               
  36.     abort:          fd_mcs_abort,               
  37.     reset:          fd_mcs_reset,               
  38.     bios_param:     fd_mcs_biosparam,           
  39.     can_queue:      1, 
  40.     this_id:        7, 
  41.     sg_tablesize:   64, 
  42.     cmd_per_lun:    1, 
  43.     use_clustering: DISABLE_CLUSTERING }
  44. #endif /* _FD_MCS_H */