26 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef MVME147_H3 4/* $Id: mvme147.h,v 1.4 1997/01/19 23:07:10 davem Exp $5 *6 * Header file for the MVME147 built-in SCSI controller for Linux7 *8 * Written and (C) 1993, Hamish Macdonald, see mvme147.c for more info9 *10 */11 12#include <linux/types.h>13 14int mvme147_detect(struct scsi_host_template *);15int mvme147_release(struct Scsi_Host *);16 17#ifndef CMD_PER_LUN18#define CMD_PER_LUN 219#endif20 21#ifndef CAN_QUEUE22#define CAN_QUEUE 1623#endif24 25#endif /* MVME147_H */26