diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-24 16:53:31 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-24 16:53:31 -0400 |
commit | f01d35d87f39ab794ddcdefadb79c11054bcbfbc (patch) | |
tree | 018c211b22e57819cc8456b4d85993bbdda92246 /include/asm-mips/mach-generic | |
parent | 35bbac9a2f73a7e0967d0a1d3e3673e2590ef716 (diff) |
ide-generic: remove ide_default_{io_base,irq}() inlines (take 3)
Replace ide_default_{io_base,irq}() inlines by legacy_{bases,irqs}[].
v2:
Add missing zero-ing of hws[] (caught during testing by Borislav Petkov).
v3:
Fix zero-oing of hws[] for _real_ this time.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/asm-mips/mach-generic')
-rw-r--r-- | include/asm-mips/mach-generic/ide.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/include/asm-mips/mach-generic/ide.h b/include/asm-mips/mach-generic/ide.h index 8ee6bff030d9..73008f7bdc93 100644 --- a/include/asm-mips/mach-generic/ide.h +++ b/include/asm-mips/mach-generic/ide.h | |||
@@ -48,34 +48,6 @@ found: | |||
48 | #endif | 48 | #endif |
49 | } | 49 | } |
50 | 50 | ||
51 | static __inline__ int ide_default_irq(unsigned long base) | ||
52 | { | ||
53 | switch (base) { | ||
54 | case 0x1f0: return 14; | ||
55 | case 0x170: return 15; | ||
56 | case 0x1e8: return 11; | ||
57 | case 0x168: return 10; | ||
58 | case 0x1e0: return 8; | ||
59 | case 0x160: return 12; | ||
60 | default: | ||
61 | return 0; | ||
62 | } | ||
63 | } | ||
64 | |||
65 | static __inline__ unsigned long ide_default_io_base(int index) | ||
66 | { | ||
67 | switch (index) { | ||
68 | case 0: return 0x1f0; | ||
69 | case 1: return 0x170; | ||
70 | case 2: return 0x1e8; | ||
71 | case 3: return 0x168; | ||
72 | case 4: return 0x1e0; | ||
73 | case 5: return 0x160; | ||
74 | default: | ||
75 | return 0; | ||
76 | } | ||
77 | } | ||
78 | |||
79 | /* MIPS port and memory-mapped I/O string operations. */ | 51 | /* MIPS port and memory-mapped I/O string operations. */ |
80 | static inline void __ide_flush_prologue(void) | 52 | static inline void __ide_flush_prologue(void) |
81 | { | 53 | { |