diff options
author | John W. Linville <linville@tuxdriver.com> | 2014-11-11 22:12:17 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-11-11 22:12:17 (GMT) |
commit | a15c706889753a92ccf90a55516a4f0c87a02201 (patch) | |
tree | 6991368ee109e6a83825fb0689d9706ef6cbd7de /drivers | |
parent | 4eed83a252257ad8ad41ba1c769341960ed4cdc5 (diff) | |
download | linux-a15c706889753a92ccf90a55516a4f0c87a02201.tar.xz |
ath9k_htc: remove return of value in empty definintion of ath9k_htc_deinit_debug
Cc: Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/htc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/htc.h b/drivers/net/wireless/ath/ath9k/htc.h index b34acde..9dde265 100644 --- a/drivers/net/wireless/ath/ath9k/htc.h +++ b/drivers/net/wireless/ath/ath9k/htc.h @@ -629,7 +629,9 @@ int ath9k_htc_init_debug(struct ath_hw *ah); void ath9k_htc_deinit_debug(struct ath9k_htc_priv *priv); #else static inline int ath9k_htc_init_debug(struct ath_hw *ah) { return 0; }; -static inline void ath9k_htc_deinit_debug(struct ath9k_htc_priv *priv) { return 0; }; +static inline void ath9k_htc_deinit_debug(struct ath9k_htc_priv *priv) +{ +} #endif /* CONFIG_ATH9K_HTC_DEBUGFS */ #endif /* HTC_H */ |