amiga7xx.h 541 B

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