Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a15c7068 authored by John W. Linville's avatar John W. Linville
Browse files

ath9k_htc: remove return of value in empty definintion of ath9k_htc_deinit_debug



Cc: Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 4eed83a2
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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 */