[CPUFREQ] Fix the p4-clockmod N60 errata workaround.
[linux-2.6/mini2440.git] / drivers / scsi / scsi.h
blob5ee5d80a9931376920033f8338989491694552be
1 /*
2 * scsi.h Copyright (C) 1992 Drew Eckhardt
3 * Copyright (C) 1993, 1994, 1995, 1998, 1999 Eric Youngdale
4 * generic SCSI package header file by
5 * Initial versions: Drew Eckhardt
6 * Subsequent revisions: Eric Youngdale
8 * <drew@colorado.edu>
10 * Modified by Eric Youngdale eric@andante.org to
11 * add scatter-gather, multiple outstanding request, and other
12 * enhancements.
15 * NOTE: this file only contains compatibility glue for old drivers. All
16 * these wrappers will be removed sooner or later. For new code please use
17 * the interfaces declared in the headers in include/scsi/
20 #ifndef _SCSI_H
21 #define _SCSI_H
23 #include <linux/config.h> /* for CONFIG_SCSI_LOGGING */
25 #include <scsi/scsi_cmnd.h>
26 #include <scsi/scsi_device.h>
27 #include <scsi/scsi_eh.h>
28 #include <scsi/scsi_request.h>
29 #include <scsi/scsi_tcq.h>
30 #include <scsi/scsi.h>
33 * Some defs, in case these are not defined elsewhere.
35 #ifndef TRUE
36 #define TRUE 1
37 #endif
38 #ifndef FALSE
39 #define FALSE 0
40 #endif
42 struct Scsi_Host;
43 struct scsi_cmnd;
44 struct scsi_device;
45 struct scsi_target;
46 struct scatterlist;
48 /* obsolete typedef junk. */
49 #include "scsi_typedefs.h"
51 #endif /* _SCSI_H */