diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2008-03-02 18:30:15 +0900 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-04-07 12:15:40 -0500 |
commit | 9ff26eefd4f19051ce13bbba6847871626680e91 (patch) | |
tree | b5fb793cb3ee8866d70a1c0d62ce3d585136f381 /drivers/scsi/scsi_debug.c | |
parent | 9924a781f3e746ba5aa54cf96ca462b8d0915221 (diff) | |
download | kernel-crypto-9ff26eefd4f19051ce13bbba6847871626680e91.tar.gz kernel-crypto-9ff26eefd4f19051ce13bbba6847871626680e91.tar.xz kernel-crypto-9ff26eefd4f19051ce13bbba6847871626680e91.zip |
[SCSI] scsi_debug: stop including drivers/scsi/scsi.h
This converts scsi_debug to include header files in include/scsi/
instead of drivers/scsi/scsi.h.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Acked-by: Douglas Gilbert <dougg@torque.net>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/scsi_debug.c')
-rw-r--r-- | drivers/scsi/scsi_debug.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c index d8a42d9a9fe..26979e0185b 100644 --- a/drivers/scsi/scsi_debug.c +++ b/drivers/scsi/scsi_debug.c @@ -39,9 +39,11 @@ #include <linux/vmalloc.h> #include <linux/moduleparam.h> #include <linux/scatterlist.h> - #include <linux/blkdev.h> -#include "scsi.h" + +#include <scsi/scsi.h> +#include <scsi/scsi_cmnd.h> +#include <scsi/scsi_device.h> #include <scsi/scsi_host.h> #include <scsi/scsicam.h> |