mvme147.h 467 B

123456789101112131415161718192021222324
  1. #ifndef MVME147_H
  2. /* $Id: mvme147.h,v 1.1.1.1 2007/06/12 07:27:09 eyryu 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. #ifndef CMD_PER_LUN
  13. #define CMD_PER_LUN 2
  14. #endif
  15. #ifndef CAN_QUEUE
  16. #define CAN_QUEUE 16
  17. #endif
  18. #endif /* MVME147_H */