diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-12-09 11:12:18 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-12-10 16:52:11 -0500 |
commit | 5b1d221e6292f9fcf9f12d6c9e94ee9470ee2a24 (patch) | |
tree | 3d9366cab298b0f39e64f6b3d4f2bac94343d125 /include | |
parent | 3263263f7091eccab6fdc23f28f09b17c0466629 (diff) |
[MIPS] Fix build of several IDE drivers by providing pci_get_legacy_ide_irq
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-mips/pci.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-mips/pci.h b/include/asm-mips/pci.h index c4d68bebdca6..7f0f120ca07c 100644 --- a/include/asm-mips/pci.h +++ b/include/asm-mips/pci.h | |||
@@ -187,4 +187,10 @@ static inline void pcibios_add_platform_entries(struct pci_dev *dev) | |||
187 | /* Do platform specific device initialization at pci_enable_device() time */ | 187 | /* Do platform specific device initialization at pci_enable_device() time */ |
188 | extern int pcibios_plat_dev_init(struct pci_dev *dev); | 188 | extern int pcibios_plat_dev_init(struct pci_dev *dev); |
189 | 189 | ||
190 | /* Chances are this interrupt is wired PC-style ... */ | ||
191 | static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel) | ||
192 | { | ||
193 | return channel ? 15 : 14; | ||
194 | } | ||
195 | |||
190 | #endif /* _ASM_PCI_H */ | 196 | #endif /* _ASM_PCI_H */ |