Skip to content

Commit a4ab5a1

Browse files
Phil Elwellpopcornmix
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: #1313
1 parent 43dbf93 commit a4ab5a1

File tree

1 file changed

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

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1386,8 +1386,7 @@ static int brcmf_sdio_hdparse(struct brcmf_sdio *bus, u8 *header,
13861386
return -ENXIO;
13871387
}
13881388
if (rd->seq_num != rx_seq) {
1389-
brcmf_err("seq %d: sequence number error, expect %d\n",
1390-
rx_seq, rd->seq_num);
1389+
brcmf_dbg(SDIO, "seq %d, expected %d\n", rx_seq, rd->seq_num);
13911390
bus->sdcnt.rx_badseq++;
13921391
rd->seq_num = rx_seq;
13931392
}

0 commit comments

Comments
 (0)