blob: f51e466893e72b6cb48a86f65b1d7c14f749e74d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
7 *
8 * <drew@colorado.edu>
9 *
10 * Modified by Eric Youngdale eric@andante.org to
11 * add scatter-gather, multiple outstanding request, and other
12 * enhancements.
13 */
14/*
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/
18 */
19
20#ifndef _SCSI_H
21#define _SCSI_H
22
23#include <linux/config.h> /* for CONFIG_SCSI_LOGGING */
24
25#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <scsi/scsi_device.h>
27#include <scsi/scsi_eh.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <scsi/scsi_tcq.h>
29#include <scsi/scsi.h>
30
31/*
32 * Some defs, in case these are not defined elsewhere.
33 */
34#ifndef TRUE
35#define TRUE 1
36#endif
37#ifndef FALSE
38#define FALSE 0
39#endif
40
41struct Scsi_Host;
42struct scsi_cmnd;
43struct scsi_device;
44struct scsi_target;
45struct scatterlist;
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* obsolete typedef junk. */
48#include "scsi_typedefs.h"
49
50#endif /* _SCSI_H */