summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/eata.h
blob: 27b86f3454af4c870fd46e16333ef0dd4d6ab0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 *	eata.h - used by low-level scsi driver for EISA EATA controllers.
 *
 */
#ifndef _EISA_EATA_H
#define _EISA_EATA_H

#define EATA_VERSION "1.08.00"

int eata_detect(Scsi_Host_Template *);
int eata_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
int eata_abort(Scsi_Cmnd *);
int eata_reset(Scsi_Cmnd *);
int eata_bios_param(Disk *, int, int*);

#define EATA {  NULL, /* Ptr for modules */                    \
		  NULL, /* usage count for modules */	       \
                "EISA EATA 2.0A rev. " EATA_VERSION " by "     \
                "Dario_Ballabio@milano.europe.dg.com.",        \
                eata_detect,	        	               \
                NULL, /* Release */     	               \
		NULL,	                                       \
		NULL,    			       	       \
		eata_queuecommand,			       \
		eata_abort,				       \
		eata_reset,				       \
	        NULL,		                               \
		eata_bios_param,   			       \
		0,   /* can_queue, reset by detect */          \
                7,   /* this_id, reset by detect */            \
                0,   /* sg_tablesize, reset by detect */       \
                0,   /* cmd_per_lun, reset by detect */        \
		0,   /* number of boards present */            \
                0,   /* unchecked isa dma */                   \
                ENABLE_CLUSTERING                              \
                }
#endif