diff options
Diffstat (limited to 'include/linux/ide.h')
| -rw-r--r-- | include/linux/ide.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index 9918772bf274..eddb6daadf4a 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
| @@ -189,6 +189,21 @@ static inline void ide_std_init_ports(hw_regs_t *hw, | |||
| 189 | hw->io_ports.ctl_addr = ctl_addr; | 189 | hw->io_ports.ctl_addr = ctl_addr; |
| 190 | } | 190 | } |
| 191 | 191 | ||
| 192 | /* for IDE PCI controllers in legacy mode, temporary */ | ||
| 193 | static inline int __ide_default_irq(unsigned long base) | ||
| 194 | { | ||
| 195 | switch (base) { | ||
| 196 | #ifdef CONFIG_IA64 | ||
| 197 | case 0x1f0: return isa_irq_to_vector(14); | ||
| 198 | case 0x170: return isa_irq_to_vector(15); | ||
| 199 | #else | ||
| 200 | case 0x1f0: return 14; | ||
| 201 | case 0x170: return 15; | ||
| 202 | #endif | ||
| 203 | } | ||
| 204 | return 0; | ||
| 205 | } | ||
| 206 | |||
| 192 | #include <asm/ide.h> | 207 | #include <asm/ide.h> |
| 193 | 208 | ||
| 194 | #if !defined(MAX_HWIFS) || defined(CONFIG_EMBEDDED) | 209 | #if !defined(MAX_HWIFS) || defined(CONFIG_EMBEDDED) |
