diff options
author | Rolf Eike Beer <eike-kernel@sf-tec.de> | 2007-02-16 01:46:25 -0800 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2007-02-16 10:14:42 -0600 |
commit | a9b7320294f885be6087bdef7a0e25922c36eb1b (patch) | |
tree | 21be1ac27fe8b0fee1d622ba425bd2f5dd2ea306 /include/scsi | |
parent | e790b3dd2b59e2418923fa0122d53e57ffa5a868 (diff) | |
download | linux-3.10-a9b7320294f885be6087bdef7a0e25922c36eb1b.tar.gz linux-3.10-a9b7320294f885be6087bdef7a0e25922c36eb1b.tar.bz2 linux-3.10-a9b7320294f885be6087bdef7a0e25922c36eb1b.zip |
[SCSI] scsi_transport.h should include scsi_device.h
scsi_transport.h defines the inline function scsi_transport_device_data() that
dereferences a pointer of "struct scsi_device *". Since the struct is not
known by the header this might break compilation.
Include scsi/scsi_device.h to not rely on users doing the correct magic
include order.
Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/scsi_transport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scsi/scsi_transport.h b/include/scsi/scsi_transport.h index cca1d4926d2..3c18baa65a7 100644 --- a/include/scsi/scsi_transport.h +++ b/include/scsi/scsi_transport.h @@ -22,6 +22,7 @@ #include <linux/transport_class.h> #include <scsi/scsi_host.h> +#include <scsi/scsi_device.h> struct scsi_transport_template { /* the attribute containers */ |