Fix scsi/scsi_transport.h compile error 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@xxxxxxxxx> --- commit 2ce61cfef5642b3a7414d2f430acf179f50f7228 tree 4d9c48a499dd47028bf28dfdd931c501efc32db3 parent 788fd16e408ca6c1008829d52bca9f13cbec64ce author Rolf Eike Beer <eike-kernel@xxxxxxxxx> Mon, 31 Jul 2006 09:08:09 +0200 committer Rolf Eike Beer <beer@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> Mon, 31 Jul 2006 09:08:09 +0200 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 cca1d49..3c18baa 100644 --- a/include/scsi/scsi_transport.h +++ b/include/scsi/scsi_transport.h @@ -22,6 +22,7 @@ #define SCSI_TRANSPORT_H #include <linux/transport_class.h> #include <scsi/scsi_host.h> +#include <scsi/scsi_device.h> struct scsi_transport_template { /* the attribute containers */ - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html