diff options
author | Sujith Manoharan <c_manoha@qca.qualcomm.com> | 2014-09-05 06:33:16 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-09-09 23:27:21 +0400 |
commit | 19ec477f168fb514b961de5ffdb02742153728e6 (patch) | |
tree | 7444adc223ddc659b87d9ba31d8e99ddd2d86721 /drivers/net/wireless/ath/ath9k/ath9k.h | |
parent | 9019f646b2da436da557e58c3fe3a2dfda440a55 (diff) | |
download | linux-19ec477f168fb514b961de5ffdb02742153728e6.tar.xz |
ath9k: Fix ath_startrecv()
Since ath_startrecv() doesn't return an error value,
cleanup the callsites.
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.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 b4ac51e70123..12cdabbfb8da 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h @@ -527,7 +527,7 @@ static inline void ath_chanctx_check_active(struct ath_softc *sc, #endif /* CONFIG_ATH9K_CHANNEL_CONTEXT */ int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan); -int ath_startrecv(struct ath_softc *sc); +void ath_startrecv(struct ath_softc *sc); bool ath_stoprecv(struct ath_softc *sc); u32 ath_calcrxfilter(struct ath_softc *sc); int ath_rx_init(struct ath_softc *sc, int nbufs); |