mirror of https://github.com/hak5/openwrt-owl.git
ar71xx: add ap91_pci_init_simple helper
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34646owl
parent
d7cebac243
commit
75b71f4a74
|
@ -109,6 +109,12 @@ __init void ap91_pci_init(u8 *cal_data, u8 *mac_addr)
|
|||
pci_enable_ath9k_fixup(0, ap9x_wmac0_data.eeprom_data);
|
||||
}
|
||||
|
||||
__init void ap91_pci_init_simple(void)
|
||||
{
|
||||
ap91_pci_init(NULL, NULL);
|
||||
ap9x_wmac0_data.eeprom_name = "pci_wmac0.eeprom";
|
||||
}
|
||||
|
||||
static int ap94_pci_plat_dev_init(struct pci_dev *dev)
|
||||
{
|
||||
switch (PCI_SLOT(dev->devfn)) {
|
||||
|
|
|
@ -22,6 +22,7 @@ void ap9x_pci_setup_wmac_leds(unsigned wmac, struct gpio_led *leds,
|
|||
struct ath9k_platform_data *ap9x_pci_get_wmac_data(unsigned wmac);
|
||||
|
||||
void ap91_pci_init(u8 *cal_data, u8 *mac_addr);
|
||||
void ap91_pci_init_simple(void);
|
||||
void ap94_pci_init(u8 *cal_data0, u8 *mac_addr0,
|
||||
u8 *cal_data1, u8 *mac_addr1);
|
||||
|
||||
|
@ -38,6 +39,7 @@ static inline struct ath9k_platform_data *ap9x_pci_get_wmac_data(unsigned wmac)
|
|||
}
|
||||
|
||||
static inline void ap91_pci_init(u8 *cal_data, u8 *mac_addr) {}
|
||||
static inline void ap91_pci_init_simple(void) {}
|
||||
static inline void ap94_pci_init(u8 *cal_data0, u8 *mac_addr0,
|
||||
u8 *cal_data1, u8 *mac_addr1) {}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue