diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-16 14:33:44 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-16 14:33:44 -0400 |
commit | ad15e9fc8913b704978ffdda7d1f31c79ed6814d (patch) | |
tree | 3d98a31868782971df994a0ae77887b2a6f35517 /drivers/ide | |
parent | 61729415e64a1149d4eb36c3fac26a28728ad1d7 (diff) |
ide: remove needless includes from ide-taskfile.c (take 2)
v2:
On Sunday 15 June 2008, Geert Uytterhoeven wrote:
> As ide-taskfile.c uses scatterlists, it should include <linux/scatterlist.h>.
(v1 broke IDE build on m68k, thanks to Geert for finding the bug)
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/ide-taskfile.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/ide/ide-taskfile.c b/drivers/ide/ide-taskfile.c index 0d0bf292c418..1fbdb746dc88 100644 --- a/drivers/ide/ide-taskfile.c +++ b/drivers/ide/ide-taskfile.c | |||
@@ -8,28 +8,18 @@ | |||
8 | * The big the bad and the ugly. | 8 | * The big the bad and the ugly. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <linux/module.h> | ||
12 | #include <linux/types.h> | 11 | #include <linux/types.h> |
13 | #include <linux/string.h> | 12 | #include <linux/string.h> |
14 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
15 | #include <linux/timer.h> | ||
16 | #include <linux/mm.h> | ||
17 | #include <linux/sched.h> | 14 | #include <linux/sched.h> |
18 | #include <linux/interrupt.h> | 15 | #include <linux/interrupt.h> |
19 | #include <linux/major.h> | ||
20 | #include <linux/errno.h> | 16 | #include <linux/errno.h> |
21 | #include <linux/genhd.h> | ||
22 | #include <linux/blkpg.h> | ||
23 | #include <linux/slab.h> | 17 | #include <linux/slab.h> |
24 | #include <linux/pci.h> | ||
25 | #include <linux/delay.h> | 18 | #include <linux/delay.h> |
26 | #include <linux/hdreg.h> | 19 | #include <linux/hdreg.h> |
27 | #include <linux/ide.h> | 20 | #include <linux/ide.h> |
28 | #include <linux/bitops.h> | ||
29 | #include <linux/scatterlist.h> | 21 | #include <linux/scatterlist.h> |
30 | 22 | ||
31 | #include <asm/byteorder.h> | ||
32 | #include <asm/irq.h> | ||
33 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
34 | #include <asm/io.h> | 24 | #include <asm/io.h> |
35 | 25 | ||