Skip to content

Commit 28d3783

Browse files
Phil ElwellNoltari
Phil Elwell
authored andcommitted
brcmfmac: change rx_seq check log from error print to debug print
The bus rx sequence is not in order because that control and event frames always cause immediate send, but data frames may be held for glomming in firmware side. It is not actually an error as the packets are still processed even if the RX sequence is not in order. Therefore the error message is rephrased and changed to a debug message. [ Patch from Broadcom ] See: raspberrypi/linux#1313
1 parent 6a900b6 commit 28d3783

File tree

1 file changed

+1
-2
lines changed
  • drivers/net/wireless/brcm80211/brcmfmac

1 file changed

+1
-2
lines changed

drivers/net/wireless/brcm80211/brcmfmac/sdio.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1476,8 +1476,7 @@ static int brcmf_sdio_hdparse(struct brcmf_sdio *bus, u8 *header,
14761476
return -ENXIO;
14771477
}
14781478
if (rd->seq_num != rx_seq) {
1479-
brcmf_err("seq %d: sequence number error, expect %d\n",
1480-
rx_seq, rd->seq_num);
1479+
brcmf_dbg(SDIO, "seq %d, expected %d\n", rx_seq, rd->seq_num);
14811480
bus->sdcnt.rx_badseq++;
14821481
rd->seq_num = rx_seq;
14831482
}

0 commit comments

Comments
 (0)