Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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>

authored by

Henrik Kretzschmar and committed by
James Bottomley
53aefd3f 20a2460b

+4 -3
+4 -3
drivers/scsi/seagate.c
··· 94 94 #include <linux/string.h> 95 95 #include <linux/proc_fs.h> 96 96 #include <linux/init.h> 97 - #include <linux/delay.h> 98 97 #include <linux/blkdev.h> 99 98 #include <linux/stat.h> 100 99 #include <linux/delay.h> ··· 102 103 #include <asm/system.h> 103 104 #include <asm/uaccess.h> 104 105 105 - #include "scsi.h" 106 + #include <scsi/scsi_cmnd.h> 107 + #include <scsi/scsi_device.h> 108 + #include <scsi/scsi.h> 109 + 106 110 #include <scsi/scsi_dbg.h> 107 111 #include <scsi/scsi_host.h> 108 112 109 - #include <scsi/scsi_ioctl.h> 110 113 111 114 #ifdef DEBUG 112 115 #define DPRINTK( when, msg... ) do { if ( (DEBUG & (when)) == (when) ) printk( msg ); } while (0)