From: Rolf Eike Beer 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 Cc: James Bottomley Signed-off-by: Andrew Morton --- include/scsi/scsi_transport.h | 1 + 1 file changed, 1 insertion(+) diff -puN include/scsi/scsi_transport.h~fix-scsi-scsi_transporth-compile-error include/scsi/scsi_transport.h --- a/include/scsi/scsi_transport.h~fix-scsi-scsi_transporth-compile-error +++ a/include/scsi/scsi_transport.h @@ -22,6 +22,7 @@ #include #include +#include struct scsi_transport_template { /* the attribute containers */ _