mvme16x.h 553 B

123456789101112131415161718192021222324
  1. #ifndef MVME16x_SCSI_H
  2. #define MVME16x_SCSI_H
  3. #include <linux/types.h>
  4. int mvme16x_scsi_detect(struct scsi_host_template *);
  5. const char *NCR53c7x0_info(void);
  6. int NCR53c7xx_queue_command(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  7. int NCR53c7xx_abort(Scsi_Cmnd *);
  8. int NCR53c7x0_release (struct Scsi_Host *);
  9. int NCR53c7xx_reset(Scsi_Cmnd *, unsigned int);
  10. void NCR53c7x0_intr(int irq, void *dev_id);
  11. #ifndef CMD_PER_LUN
  12. #define CMD_PER_LUN 3
  13. #endif
  14. #ifndef CAN_QUEUE
  15. #define CAN_QUEUE 24
  16. #endif
  17. #include <scsi/scsicam.h>
  18. #endif /* MVME16x_SCSI_H */