Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Skip to content
Commit 14bc435e authored by Max.Nekludov@us.elster.com's avatar Max.Nekludov@us.elster.com Committed by David S. Miller
Browse files

ks8851: Fix interpretation of rxlen field.



According to the Datasheet (page 52):
15-12 Reserved
11-0 RXBC Receive Byte Count
This field indicates the present received frame byte size.

The code has a bug:
                 rxh = ks8851_rdreg32(ks, KS_RXFHSR);
                 rxstat = rxh & 0xffff;
                 rxlen = rxh >> 16; // BUG!!! 0xFFF mask should be applied

Signed-off-by: default avatarMax Nekludov <Max.Nekludov@us.elster.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 00cfec37
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment