diff options
author | Dan Carpenter <error27@gmail.com> | 2010-07-22 12:21:02 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-07-26 19:32:42 (GMT) |
commit | bd75eb854300c7e09eaf067572498abdeb9d3424 (patch) | |
tree | 1eaad785eaa8e8e36b72eae250a9510d51681b42 | |
parent | 3be61a3851c458fb4ce394645e26e8e9670c796a (diff) | |
download | linux-bd75eb854300c7e09eaf067572498abdeb9d3424.tar.xz |
libertas: precedence bug
Negate has precedence over comparison so the original test was always
false. (Neither 0 nor 1 are equal to NL80211_IFTYPE_MONITOR).
Signed-off-by: Dan Carpenter <error27@gmail.com>
Acked-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/libertas/tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/libertas/tx.c b/drivers/net/wireless/libertas/tx.c index 411a3bb..8000ca6 100644 --- a/drivers/net/wireless/libertas/tx.c +++ b/drivers/net/wireless/libertas/tx.c @@ -180,7 +180,7 @@ void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count) { struct tx_radiotap_hdr *radiotap_hdr; - if (!priv->wdev->iftype == NL80211_IFTYPE_MONITOR || + if (priv->wdev->iftype != NL80211_IFTYPE_MONITOR || priv->currenttxskb == NULL) return; |