aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Kretzschmar <henne@nachtwindheim.de>2006-09-25 16:59:12 -0700
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2006-09-26 11:35:24 -0700
commit53aefd3fc31f08487f6941282ef6611413e02e43 (patch)
treef8c84fa26a50278ff66380da2e76020e59e2a7ca
parent20a2460b4dd07fe7dc74b281fcbe18bac03830aa (diff)
[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>
-rw-r--r--drivers/scsi/seagate.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/scsi/seagate.c b/drivers/scsi/seagate.c
index e8f146d361c..4e6666ceae2 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)