Skip to content

Commit

Permalink
rt2x00dev.c: fix-up merge damage
Browse files Browse the repository at this point in the history
This restores the effects of "rt2x00: Don't count retries as failure".

Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
John W. Linville committed Jun 10, 2008
1 parent 65b53e4 commit cb14cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/rt2x00/rt2x00dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ void rt2x00lib_txdone(struct queue_entry *entry,
rt2x00dev->link.qual.tx_success +=
test_bit(TXDONE_SUCCESS, &txdesc->flags);
rt2x00dev->link.qual.tx_failed +=
txdesc->retry + !!test_bit(TXDONE_FAILURE, &txdesc->flags);
test_bit(TXDONE_FAILURE, &txdesc->flags);

/*
* Initialize TX status
Expand Down

0 comments on commit cb14cb7

Please sign in to comment.