ath6kl: Add missing newline terminations
authorJoe Perches <joe@perches.com>
Wed, 30 May 2012 08:58:39 +0000 (01:58 -0700)
committerKalle Valo <kvalo@qca.qualcomm.com>
Mon, 11 Jun 2012 13:05:42 +0000 (16:05 +0300)
Messages without newlines can be interleaved.
Avoid this by adding terminations.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath6kl/cfg80211.c

index 6f20998becebc9045bcbac75684c15ea129ea719..d2129030fd73046b6b7c82ba29bd097776f0a9bb 100644 (file)
@@ -1001,7 +1001,7 @@ static int ath6kl_cfg80211_scan(struct wiphy *wiphy, struct net_device *ndev,
                                       WMI_FRAME_PROBE_REQ,
                                       request->ie, request->ie_len);
        if (ret) {
-               ath6kl_err("failed to set Probe Request appie for scan");
+               ath6kl_err("failed to set Probe Request appie for scan\n");
                return ret;
        }
 
@@ -3288,7 +3288,7 @@ static int ath6kl_cfg80211_sscan_start(struct wiphy *wiphy,
                                       WMI_FRAME_PROBE_REQ,
                                       request->ie, request->ie_len);
        if (ret) {
-               ath6kl_warn("Failed to set probe request IE for scheduled scan: %d",
+               ath6kl_warn("Failed to set probe request IE for scheduled scan: %d\n",
                            ret);
                return ret;
        }
This page took 0.028325 seconds and 5 git commands to generate.