Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 134148
b: refs/heads/master
c: 6baff7f
h: refs/heads/master
v: v3
  • Loading branch information
Gabor Juhos authored and John W. Linville committed Jan 29, 2009
1 parent ecc1262 commit 0adb6ee
Show file tree
Hide file tree
Showing 5 changed files with 329 additions and 280 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 39c3c2f2de6bccf698bfb5b9c4f56ddf99de0dbc
refs/heads/master: 6baff7f9a6c571dcd9a59820e3c094f7490cb0fd
1 change: 1 addition & 0 deletions trunk/drivers/net/wireless/ath9k/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ ath9k-y += hw.o \
xmit.o \
rc.o

ath9k-$(CONFIG_PCI) += pci.o
ath9k-$(CONFIG_ATH9K_DEBUG) += debug.o

obj-$(CONFIG_ATH9K) += ath9k.o
19 changes: 18 additions & 1 deletion trunk/drivers/net/wireless/ath9k/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#define CORE_H

#include <linux/etherdevice.h>
#include <linux/pci.h>
#include <linux/device.h>
#include <net/mac80211.h>
#include <linux/leds.h>
#include <linux/rfkill.h>
Expand Down Expand Up @@ -767,4 +767,21 @@ static inline void ath_bus_cleanup(struct ath_softc *sc)
sc->bus_ops->cleanup(sc);
}

extern struct ieee80211_ops ath9k_ops;

irqreturn_t ath_isr(int irq, void *dev);
void ath_cleanup(struct ath_softc *sc);
int ath_attach(u16 devid, struct ath_softc *sc);
void ath_detach(struct ath_softc *sc);
const char *ath_mac_bb_name(u32 mac_bb_version);
const char *ath_rf_name(u16 rf_version);

#ifdef CONFIG_PCI
int ath_pci_init(void);
void ath_pci_exit(void);
#else
static inline int ath_pci_init(void) { return 0; };
static inline void ath_pci_exit(void) {};
#endif

#endif /* CORE_H */
Loading

0 comments on commit 0adb6ee

Please sign in to comment.