mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-16 19:13:39 -04:00
wifi: brcmfmac: Fix spelling mistake "ivalid" -> "invalid"
There are spelling mistakes in bphy_err() messages. Fix them. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://msgid.link/20240401215402.1348565-1-colin.i.king@gmail.com
This commit is contained in:
committed by
Kalle Valo
parent
a35b36e6ee
commit
d26a0a66f9
@@ -4549,7 +4549,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
|
||||
|
||||
if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) {
|
||||
err = -EINVAL;
|
||||
bphy_err(drvr, "ivalid OUI\n");
|
||||
bphy_err(drvr, "invalid OUI\n");
|
||||
goto exit;
|
||||
}
|
||||
offset += TLV_OUI_LEN;
|
||||
@@ -4588,7 +4588,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
|
||||
for (i = 0; i < count; i++) {
|
||||
if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) {
|
||||
err = -EINVAL;
|
||||
bphy_err(drvr, "ivalid OUI\n");
|
||||
bphy_err(drvr, "invalid OUI\n");
|
||||
goto exit;
|
||||
}
|
||||
offset += TLV_OUI_LEN;
|
||||
@@ -4622,7 +4622,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
|
||||
for (i = 0; i < count; i++) {
|
||||
if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) {
|
||||
err = -EINVAL;
|
||||
bphy_err(drvr, "ivalid OUI\n");
|
||||
bphy_err(drvr, "invalid OUI\n");
|
||||
goto exit;
|
||||
}
|
||||
offset += TLV_OUI_LEN;
|
||||
|
||||
Reference in New Issue
Block a user