Skip to content

Commit 8a96dfb

Browse files
committed
wifi: brcmfmac: Demote vendor-specific attach/detach messages to info
People are getting spooked by brcmfmac errors on their boot console. There's no reason for these messages to be errors. Cc: [email protected] Fixes: d6a5c56 ("wifi: brcmfmac: add support for vendor-specific firmware api") Signed-off-by: Hector Martin <[email protected]>
1 parent d46831b commit 8a96dfb

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

drivers/net/wireless/broadcom/brcm80211/brcmfmac/bca/core.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212

1313
static int brcmf_bca_attach(struct brcmf_pub *drvr)
1414
{
15-
pr_err("%s: executing\n", __func__);
15+
pr_info("%s: executing\n", __func__);
1616
return 0;
1717
}
1818

1919
static void brcmf_bca_detach(struct brcmf_pub *drvr)
2020
{
21-
pr_err("%s: executing\n", __func__);
21+
pr_info("%s: executing\n", __func__);
2222
}
2323

2424
const struct brcmf_fwvid_ops brcmf_bca_ops = {

drivers/net/wireless/broadcom/brcm80211/brcmfmac/cyw/core.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212

1313
static int brcmf_cyw_attach(struct brcmf_pub *drvr)
1414
{
15-
pr_err("%s: executing\n", __func__);
15+
pr_info("%s: executing\n", __func__);
1616
return 0;
1717
}
1818

1919
static void brcmf_cyw_detach(struct brcmf_pub *drvr)
2020
{
21-
pr_err("%s: executing\n", __func__);
21+
pr_info("%s: executing\n", __func__);
2222
}
2323

2424
const struct brcmf_fwvid_ops brcmf_cyw_ops = {

drivers/net/wireless/broadcom/brcm80211/brcmfmac/wcc/core.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212

1313
static int brcmf_wcc_attach(struct brcmf_pub *drvr)
1414
{
15-
pr_err("%s: executing\n", __func__);
15+
pr_info("%s: executing\n", __func__);
1616
return 0;
1717
}
1818

1919
static void brcmf_wcc_detach(struct brcmf_pub *drvr)
2020
{
21-
pr_err("%s: executing\n", __func__);
21+
pr_info("%s: executing\n", __func__);
2222
}
2323

2424
const struct brcmf_fwvid_ops brcmf_wcc_ops = {

0 commit comments

Comments
 (0)