mvme147.h 504 B

1234567891011121314151617181920212223242526
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef MVME147_H
  3. /* $Id: mvme147.h,v 1.4 1997/01/19 23:07:10 davem Exp $
  4. *
  5. * Header file for the MVME147 built-in SCSI controller for Linux
  6. *
  7. * Written and (C) 1993, Hamish Macdonald, see mvme147.c for more info
  8. *
  9. */
  10. #include <linux/types.h>
  11. int mvme147_detect(struct scsi_host_template *);
  12. int mvme147_release(struct Scsi_Host *);
  13. #ifndef CMD_PER_LUN
  14. #define CMD_PER_LUN 2
  15. #endif
  16. #ifndef CAN_QUEUE
  17. #define CAN_QUEUE 16
  18. #endif
  19. #endif /* MVME147_H */