Source
25
25
26
26
27
27
/*
28
28
* SCSI interface function Prototypes
29
29
*/
30
30
31
31
static int adpt_detect(struct scsi_host_template * sht);
32
32
static int adpt_queue(struct Scsi_Host *h, struct scsi_cmnd * cmd);
33
33
static int adpt_abort(struct scsi_cmnd * cmd);
34
34
static int adpt_reset(struct scsi_cmnd* cmd);
35
-
static int adpt_release(struct Scsi_Host *host);
36
35
static int adpt_slave_configure(struct scsi_device *);
37
36
38
37
static const char *adpt_info(struct Scsi_Host *pSHost);
39
38
static int adpt_bios_param(struct scsi_device * sdev, struct block_device *dev,
40
39
sector_t, int geom[]);
41
40
42
41
static int adpt_bus_reset(struct scsi_cmnd* cmd);
43
42
static int adpt_device_reset(struct scsi_cmnd* cmd);
44
43
45
44