mvme147.h 639 B

12345678910111213141516171819202122232425262728
  1. #ifndef MVME147_H
  2. /* $Id: mvme147.h,v 1.4 1997/01/19 23:07:10 davem Exp $
  3. *
  4. * Header file for the MVME147 built-in SCSI controller for Linux
  5. *
  6. * Written and (C) 1993, Hamish Macdonald, see mvme147.c for more info
  7. *
  8. */
  9. #include <linux/types.h>
  10. int mvme147_detect(struct scsi_host_template *);
  11. int mvme147_release(struct Scsi_Host *);
  12. const char *wd33c93_info(void);
  13. int wd33c93_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  14. int wd33c93_abort(Scsi_Cmnd *);
  15. int wd33c93_reset(Scsi_Cmnd *, unsigned int);
  16. #ifndef CMD_PER_LUN
  17. #define CMD_PER_LUN 2
  18. #endif
  19. #ifndef CAN_QUEUE
  20. #define CAN_QUEUE 16
  21. #endif
  22. #endif /* MVME147_H */