1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

ar71xx: fix build error w/o CONFIG_PCI

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26606 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2011-04-12 13:14:56 +00:00
parent 73318c1013
commit b5cfb56ed4
3 changed files with 15 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ struct ar71xx_pci_irq {
u8 pin;
};
#ifdef CONFIG_PCI
extern int (*ar71xx_pci_plat_dev_init)(struct pci_dev *dev);
extern unsigned ar71xx_pci_nr_irqs __initdata;
extern struct ar71xx_pci_irq *ar71xx_pci_irq_map __initdata;
@@ -35,5 +36,11 @@ int ar724x_pcibios_map_irq(const struct pci_dev *dev,
int ar724x_pcibios_init(void) __init;
int ar71xx_pci_init(unsigned nr_irqs, struct ar71xx_pci_irq *map) __init;
#else
static inline int ar71xx_pci_init(unsigned nr_irqs, struct ar71xx_pci_irq *map)
{
return 0;
}
#endif
#endif /* __ASM_MACH_AR71XX_PCI_H */