aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHenrik Kretzschmar <henne@nachtwindheim.de>2006-09-25 19:59:12 -0400
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2006-09-26 14:35:24 -0400
commit53aefd3fc31f08487f6941282ef6611413e02e43 (patch)
treef8c84fa26a50278ff66380da2e76020e59e2a7ca /drivers
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>
Diffstat (limited to 'drivers')
-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 e8f146d361c6..4e6666ceae26 100644
--- a/drivers/scsi/seagate.c
+++ b/drivers/scsi/seagate.c
@@ -94,7 +94,6 @@
94#include <linux/string.h> 94#include <linux/string.h>
95#include <linux/proc_fs.h> 95#include <linux/proc_fs.h>
96#include <linux/init.h> 96#include <linux/init.h>
97#include <linux/delay.h>
98#include <linux/blkdev.h> 97#include <linux/blkdev.h>
99#include <linux/stat.h> 98#include <linux/stat.h>
100#include <linux/delay.h> 99#include <linux/delay.h>
@@ -103,11 +102,13 @@
103#include <asm/system.h> 102#include <asm/system.h>
104#include <asm/uaccess.h> 103#include <asm/uaccess.h>
105 104
106#include "scsi.h" 105#include <scsi/scsi_cmnd.h>
106#include <scsi/scsi_device.h>
107#include <scsi/scsi.h>
108
107#include <scsi/scsi_dbg.h> 109#include <scsi/scsi_dbg.h>
108#include <scsi/scsi_host.h> 110#include <scsi/scsi_host.h>
109 111
110#include <scsi/scsi_ioctl.h>
111 112
112#ifdef DEBUG 113#ifdef DEBUG
113#define DPRINTK( when, msg... ) do { if ( (DEBUG & (when)) == (when) ) printk( msg ); } while (0) 114#define DPRINTK( when, msg... ) do { if ( (DEBUG & (when)) == (when) ) printk( msg ); } while (0)