sgiwd93.h 589 B

123456789101112131415161718192021222324
  1. /* $Id: sgiwd93.h,v 1.5 1998/08/25 09:18:50 ralf Exp $
  2. * sgiwd93.h: SGI WD93 scsi definitions.
  3. *
  4. * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  5. */
  6. #ifndef _SGIWD93_H
  7. #define _SGIWD93_H
  8. #ifndef CMD_PER_LUN
  9. #define CMD_PER_LUN 8
  10. #endif
  11. #ifndef CAN_QUEUE
  12. #define CAN_QUEUE 16
  13. #endif
  14. int sgiwd93_detect(Scsi_Host_Template *);
  15. int sgiwd93_release(struct Scsi_Host *instance);
  16. const char *wd33c93_info(void);
  17. int wd33c93_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  18. int wd33c93_abort(Scsi_Cmnd *);
  19. int wd33c93_host_reset(Scsi_Cmnd * SCpnt);
  20. #endif /* !(_SGIWD93_H) */