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

Commit 48bccd25 authored by Thomas Sailer's avatar Thomas Sailer Committed by David S. Miller
Browse files

hamradio: Fix bit test correctly.

parent 86a0a1e5
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -595,9 +595,8 @@ static int receive(struct net_device *dev, int cnt)
					if (!(notbitstream & (0x1fc << j)))
						state = 0;

					/* not flag received */
					else if ((bitstream & (0x1fe << j)) !=
							(0x0fc << j)) {
					/* flag received */
					else if ((bitstream & (0x1fe << j)) == (0x0fc << j)) {
						if (state)
							do_rxpacket(dev);
						bc->hdlcrx.bufcnt = 0;