cpqfcTS.h 807 B

12345678910111213141516171819
  1. #ifndef CPQFCTS_H
  2. #define CPQFCTS_H
  3. #include "cpqfcTSstructs.h"
  4. // These functions are required by the Linux SCSI layers
  5. extern int cpqfcTS_detect(Scsi_Host_Template *);
  6. extern int cpqfcTS_release(struct Scsi_Host *);
  7. extern const char * cpqfcTS_info(struct Scsi_Host *);
  8. extern int cpqfcTS_proc_info(struct Scsi_Host *, char *, char **, off_t, int, int);
  9. extern int cpqfcTS_queuecommand(Scsi_Cmnd *, void (* done)(Scsi_Cmnd *));
  10. extern int cpqfcTS_abort(Scsi_Cmnd *);
  11. extern int cpqfcTS_reset(Scsi_Cmnd *, unsigned int);
  12. extern int cpqfcTS_eh_abort(Scsi_Cmnd *Cmnd);
  13. extern int cpqfcTS_eh_device_reset(Scsi_Cmnd *);
  14. extern int cpqfcTS_biosparam(struct scsi_device *, struct block_device *,
  15. sector_t, int[]);
  16. extern int cpqfcTS_ioctl( Scsi_Device *ScsiDev, int Cmnd, void *arg);
  17. #endif /* CPQFCTS_H */