]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
brcmfmac: Fix grammar issue in error message
authorMartin Michlmayr <tbm@cyrius.com>
Sat, 10 Jun 2017 09:40:04 +0000 (11:40 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 13 Jun 2017 06:58:38 +0000 (09:58 +0300)
Fix grammar issue in error message about ISO3166.

Signed-off-by: Martin Michlmayr <tbm@cyrius.com>
Acked-by: Arend van Spriel <arend.vanspriel@broadcom.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c

index b3180b152a2f56f24890e41d0d7d137d6875f3b9..ac07e6030a053d45472824e3cda5baa20d0e9c55 100644 (file)
@@ -6778,7 +6778,7 @@ static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy,
        /* ignore non-ISO3166 country codes */
        for (i = 0; i < sizeof(req->alpha2); i++)
                if (req->alpha2[i] < 'A' || req->alpha2[i] > 'Z') {
-                       brcmf_err("not a ISO3166 code (0x%02x 0x%02x)\n",
+                       brcmf_err("not an ISO3166 code (0x%02x 0x%02x)\n",
                                  req->alpha2[0], req->alpha2[1]);
                        return;
                }