diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:23 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:23 -0400 |
commit | f94116aeec7a299640dd692128e1d22178affa8d (patch) | |
tree | e73b4ec980f50d3f4aaaa50f58bfc9607507e037 /arch/m68k | |
parent | 09a3e79187c56842d509430267ece5b82216baee (diff) |
ide: cleanup <asm-m68k/ide.h>
* Remove superfluous <asm/macints.h> include.
* No need to re-define in/out*() macros as they are no longer used
by m68k host drivers.
* readl() and writel() are not used by core IDE code.
* Use raw_*_swapw() directly in {falcon,q40}ide.c and remove
{in,out}sw_swapw() macros.
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Michael Schmitz <schmitz@debian.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/include/asm/ide.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/arch/m68k/include/asm/ide.h b/arch/m68k/include/asm/ide.h index 4e6e77759f88..3958726664ba 100644 --- a/arch/m68k/include/asm/ide.h +++ b/arch/m68k/include/asm/ide.h | |||
@@ -30,62 +30,28 @@ | |||
30 | #define _M68K_IDE_H | 30 | #define _M68K_IDE_H |
31 | 31 | ||
32 | #ifdef __KERNEL__ | 32 | #ifdef __KERNEL__ |
33 | |||
34 | |||
35 | #include <asm/setup.h> | 33 | #include <asm/setup.h> |
36 | #include <asm/io.h> | 34 | #include <asm/io.h> |
37 | #include <asm/irq.h> | 35 | #include <asm/irq.h> |
38 | 36 | ||
39 | #ifdef CONFIG_MAC | ||
40 | #include <asm/macints.h> | ||
41 | #endif | ||
42 | |||
43 | /* | 37 | /* |
44 | * Get rid of defs from io.h - ide has its private and conflicting versions | 38 | * Get rid of defs from io.h - ide has its private and conflicting versions |
45 | * Since so far no single m68k platform uses ISA/PCI I/O space for IDE, we | 39 | * Since so far no single m68k platform uses ISA/PCI I/O space for IDE, we |
46 | * always use the `raw' MMIO versions | 40 | * always use the `raw' MMIO versions |
47 | */ | 41 | */ |
48 | #undef inb | ||
49 | #undef inw | ||
50 | #undef insw | ||
51 | #undef inl | ||
52 | #undef insl | ||
53 | #undef outb | ||
54 | #undef outw | ||
55 | #undef outsw | ||
56 | #undef outl | ||
57 | #undef outsl | ||
58 | #undef readb | 42 | #undef readb |
59 | #undef readw | 43 | #undef readw |
60 | #undef readl | ||
61 | #undef writeb | 44 | #undef writeb |
62 | #undef writew | 45 | #undef writew |
63 | #undef writel | ||
64 | 46 | ||
65 | #define inb in_8 | ||
66 | #define inw in_be16 | ||
67 | #define insw(port, addr, n) raw_insw((u16 *)port, addr, n) | ||
68 | #define inl in_be32 | ||
69 | #define insl(port, addr, n) raw_insl((u32 *)port, addr, n) | ||
70 | #define outb(val, port) out_8(port, val) | ||
71 | #define outw(val, port) out_be16(port, val) | ||
72 | #define outsw(port, addr, n) raw_outsw((u16 *)port, addr, n) | ||
73 | #define outl(val, port) out_be32(port, val) | ||
74 | #define outsl(port, addr, n) raw_outsl((u32 *)port, addr, n) | ||
75 | #define readb in_8 | 47 | #define readb in_8 |
76 | #define readw in_be16 | 48 | #define readw in_be16 |
77 | #define __ide_mm_insw(port, addr, n) raw_insw((u16 *)port, addr, n) | 49 | #define __ide_mm_insw(port, addr, n) raw_insw((u16 *)port, addr, n) |
78 | #define readl in_be32 | ||
79 | #define __ide_mm_insl(port, addr, n) raw_insl((u32 *)port, addr, n) | 50 | #define __ide_mm_insl(port, addr, n) raw_insl((u32 *)port, addr, n) |
80 | #define writeb(val, port) out_8(port, val) | 51 | #define writeb(val, port) out_8(port, val) |
81 | #define writew(val, port) out_be16(port, val) | 52 | #define writew(val, port) out_be16(port, val) |
82 | #define __ide_mm_outsw(port, addr, n) raw_outsw((u16 *)port, addr, n) | 53 | #define __ide_mm_outsw(port, addr, n) raw_outsw((u16 *)port, addr, n) |
83 | #define writel(val, port) out_be32(port, val) | ||
84 | #define __ide_mm_outsl(port, addr, n) raw_outsl((u32 *)port, addr, n) | 54 | #define __ide_mm_outsl(port, addr, n) raw_outsl((u32 *)port, addr, n) |
85 | #if defined(CONFIG_ATARI) || defined(CONFIG_Q40) | ||
86 | #define insw_swapw(port, addr, n) raw_insw_swapw((u16 *)port, addr, n) | ||
87 | #define outsw_swapw(port, addr, n) raw_outsw_swapw((u16 *)port, addr, n) | ||
88 | #endif | ||
89 | 55 | ||
90 | #endif /* __KERNEL__ */ | 56 | #endif /* __KERNEL__ */ |
91 | #endif /* _M68K_IDE_H */ | 57 | #endif /* _M68K_IDE_H */ |