mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-25 18:07:55 +02: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:
parent
73318c1013
commit
b5cfb56ed4
@ -17,7 +17,7 @@ void ap91_pci_setup_wmac_led_pin(int pin) __init;
|
|||||||
void ap91_pci_setup_wmac_gpio(u32 mask, u32 val) __init;
|
void ap91_pci_setup_wmac_gpio(u32 mask, u32 val) __init;
|
||||||
#else
|
#else
|
||||||
static inline void ap91_pci_init(u8 *cal_data, u8 *mac_addr) { }
|
static inline void ap91_pci_init(u8 *cal_data, u8 *mac_addr) { }
|
||||||
static inline void ap91_pci_setup_wmac_led(int pin) { }
|
static inline void ap91_pci_setup_wmac_led_pin(int pin) { }
|
||||||
static inline void ap91_pci_setup_wmac_gpio(u32 mask, u32 gpio) { }
|
static inline void ap91_pci_setup_wmac_gpio(u32 mask, u32 gpio) { }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -46,6 +46,7 @@ static char eap7660d_wmac1_mac[6];
|
|||||||
static u16 eap7660d_wmac0_eeprom[ATH5K_PLAT_EEP_MAX_WORDS];
|
static u16 eap7660d_wmac0_eeprom[ATH5K_PLAT_EEP_MAX_WORDS];
|
||||||
static u16 eap7660d_wmac1_eeprom[ATH5K_PLAT_EEP_MAX_WORDS];
|
static u16 eap7660d_wmac1_eeprom[ATH5K_PLAT_EEP_MAX_WORDS];
|
||||||
|
|
||||||
|
#ifdef CONFIG_PCI
|
||||||
static struct ar71xx_pci_irq eap7660d_pci_irqs[] __initdata = {
|
static struct ar71xx_pci_irq eap7660d_pci_irqs[] __initdata = {
|
||||||
{
|
{
|
||||||
.slot = 0,
|
.slot = 0,
|
||||||
@ -103,6 +104,12 @@ void __init eap7660d_pci_init(u8 *cal_data0, u8 *mac_addr0,
|
|||||||
ar71xx_pci_plat_dev_init = eap7660d_pci_plat_dev_init;
|
ar71xx_pci_plat_dev_init = eap7660d_pci_plat_dev_init;
|
||||||
ar71xx_pci_init(ARRAY_SIZE(eap7660d_pci_irqs), eap7660d_pci_irqs);
|
ar71xx_pci_init(ARRAY_SIZE(eap7660d_pci_irqs), eap7660d_pci_irqs);
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
static inline void eap7660d_pci_init(u8 *cal_data0, u8 *mac_addr0,
|
||||||
|
u8 *cal_data1, u8 *mac_addr1)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
#endif /* CONFIG_PCI */
|
||||||
|
|
||||||
static struct gpio_led eap7660d_leds_gpio[] __initdata = {
|
static struct gpio_led eap7660d_leds_gpio[] __initdata = {
|
||||||
{
|
{
|
||||||
|
@ -20,6 +20,7 @@ struct ar71xx_pci_irq {
|
|||||||
u8 pin;
|
u8 pin;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifdef CONFIG_PCI
|
||||||
extern int (*ar71xx_pci_plat_dev_init)(struct pci_dev *dev);
|
extern int (*ar71xx_pci_plat_dev_init)(struct pci_dev *dev);
|
||||||
extern unsigned ar71xx_pci_nr_irqs __initdata;
|
extern unsigned ar71xx_pci_nr_irqs __initdata;
|
||||||
extern struct ar71xx_pci_irq *ar71xx_pci_irq_map __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 ar724x_pcibios_init(void) __init;
|
||||||
|
|
||||||
int ar71xx_pci_init(unsigned nr_irqs, struct ar71xx_pci_irq *map) __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 */
|
#endif /* __ASM_MACH_AR71XX_PCI_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user