diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2007-10-26 15:51:26 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:03:35 -0500 |
commit | f59d9782751bf1a2c51e7e1e9f614ffec35fb52e (patch) | |
tree | e994472272f4c9d598df9ab43ce393bdad56bfc4 /drivers/net/wireless/p54common.c | |
parent | 9f9dac281ba2acd3d6d3574076f86b8f99aaebc0 (diff) |
wireless: fix '!x & y' typo's
Fix priority mistakes similar to '!x & y'
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/p54common.c')
-rw-r--r-- | drivers/net/wireless/p54common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/p54common.c b/drivers/net/wireless/p54common.c index 5f8d898502ae..ad5c307a4410 100644 --- a/drivers/net/wireless/p54common.c +++ b/drivers/net/wireless/p54common.c | |||
@@ -375,7 +375,7 @@ static void p54_rx_frame_sent(struct ieee80211_hw *dev, struct sk_buff *skb) | |||
375 | if ((entry_hdr->magic1 & cpu_to_le16(0x4000)) != 0) | 375 | if ((entry_hdr->magic1 & cpu_to_le16(0x4000)) != 0) |
376 | pad = entry_data->align[0]; | 376 | pad = entry_data->align[0]; |
377 | 377 | ||
378 | if (!status.control.flags & IEEE80211_TXCTL_NO_ACK) { | 378 | if (!(status.control.flags & IEEE80211_TXCTL_NO_ACK)) { |
379 | if (!(payload->status & 0x01)) | 379 | if (!(payload->status & 0x01)) |
380 | status.flags |= IEEE80211_TX_STATUS_ACK; | 380 | status.flags |= IEEE80211_TX_STATUS_ACK; |
381 | else | 381 | else |