diff options
author | Henrik Kretzschmar <henne@nachtwindheim.de> | 2006-09-26 03:59:12 +0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-09-26 22:35:24 +0400 |
commit | 53aefd3fc31f08487f6941282ef6611413e02e43 (patch) | |
tree | f8c84fa26a50278ff66380da2e76020e59e2a7ca /drivers | |
parent | 20a2460b4dd07fe7dc74b281fcbe18bac03830aa (diff) | |
download | linux-53aefd3fc31f08487f6941282ef6611413e02e43.tar.xz |
[SCSI] scsi: included header cleanup
Free seagate.h from obsolete drivers/scsi.h, remove a double inclusion od
linux/delay.h and remove the unneeded scsi/scsi_ioctl.h
Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/seagate.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/scsi/seagate.c b/drivers/scsi/seagate.c index e8f146d361c6..4e6666ceae26 100644 --- a/drivers/scsi/seagate.c +++ b/drivers/scsi/seagate.c @@ -94,7 +94,6 @@ #include <linux/string.h> #include <linux/proc_fs.h> #include <linux/init.h> -#include <linux/delay.h> #include <linux/blkdev.h> #include <linux/stat.h> #include <linux/delay.h> @@ -103,11 +102,13 @@ #include <asm/system.h> #include <asm/uaccess.h> -#include "scsi.h" +#include <scsi/scsi_cmnd.h> +#include <scsi/scsi_device.h> +#include <scsi/scsi.h> + #include <scsi/scsi_dbg.h> #include <scsi/scsi_host.h> -#include <scsi/scsi_ioctl.h> #ifdef DEBUG #define DPRINTK( when, msg... ) do { if ( (DEBUG & (when)) == (when) ) printk( msg ); } while (0) |