diff options
author | roel kluin <roel.kluin@gmail.com> | 2009-10-05 21:20:08 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-13 06:44:08 -0400 |
commit | a81d4bfdef72af6b332306a64e2d119bd5365506 (patch) | |
tree | 5aeca0869589bc38f5b8e529cf927b39c7a57edc /drivers/net/hamradio | |
parent | 06a96b33aea838b61a6eeccded781a305cf85a12 (diff) |
net/hamradio: fix test in receive()
The negation makes it a bool before the comparison and hence it
will never evaluate to true.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/hamradio')
-rw-r--r-- | drivers/net/hamradio/baycom_epp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/hamradio/baycom_epp.c b/drivers/net/hamradio/baycom_epp.c index 7bcaf7c66243..ee06a13ba0f6 100644 --- a/drivers/net/hamradio/baycom_epp.c +++ b/drivers/net/hamradio/baycom_epp.c | |||
@@ -596,7 +596,8 @@ static int receive(struct net_device *dev, int cnt) | |||
596 | state = 0; | 596 | state = 0; |
597 | 597 | ||
598 | /* not flag received */ | 598 | /* not flag received */ |
599 | else if (!(bitstream & (0x1fe << j)) != (0x0fc << j)) { | 599 | else if ((bitstream & (0x1fe << j)) != |
600 | (0x0fc << j)) { | ||
600 | if (state) | 601 | if (state) |
601 | do_rxpacket(dev); | 602 | do_rxpacket(dev); |
602 | bc->hdlcrx.bufcnt = 0; | 603 | bc->hdlcrx.bufcnt = 0; |