diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-08-03 23:24:47 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-05 00:44:30 +0400 |
commit | 1e40bcfa91429edb665af9ffefb2658350913d35 (patch) | |
tree | 060b92a64521e5d90c15044dafb5a342d3e1760d /drivers/net/wireless/ath/ath9k/ath9k.h | |
parent | f637cfd6bbacbaeab329f9dfc56e9855cc15849d (diff) | |
download | linux-1e40bcfa91429edb665af9ffefb2658350913d35.tar.xz |
ath9k: distinguish between device initialization and ath_softc init
We re-label the device driver initialization routines from the
ath_softc, the "Software Carrier" fillers. This should make it
clearer what each of these do.
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ath9k.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ath9k.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h index bda0f302340c..7a5a157e15c4 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h @@ -642,7 +642,7 @@ 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); +int ath_init_device(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); |