Message ID | 1561162641-4676-4-git-send-email-srirrama@codeaurora.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 051ebababfc11e55b20fd3df15b64ff936eada6f |
Delegated to: | Kalle Valo |
Headers | show |
Series | [1/4] ath11k: Avoid use of struct initializers for runtime assignment | expand |
diff --git a/drivers/net/wireless/ath/ath11k/reg.c b/drivers/net/wireless/ath/ath11k/reg.c index da8c6c2..f72b81f 100644 --- a/drivers/net/wireless/ath/ath11k/reg.c +++ b/drivers/net/wireless/ath/ath11k/reg.c @@ -50,7 +50,7 @@ ath11k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request) int ret; ath11k_dbg(ar->ab, ATH11K_DBG_REG, - "Regulatory Notification received for %s n", wiphy_name(wiphy)); + "Regulatory Notification received for %s\n", wiphy_name(wiphy)); /* Currently supporting only General User Hints. Cell base user * hints to be handled later.
Remove stray character 'n' used in debug message of ath11k_reg_notifier() Signed-off-by: Sriram R <srirrama@codeaurora.org> --- drivers/net/wireless/ath/ath11k/reg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)