ath9k: Remove empty test condition
Just some code cleanup to remove an empty if clause. Signed-off-by: Eduardo Abinader <eduardo.abinader@riverbed.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
026441c9d4
commit
ceda5153d8
1 changed files with 1 additions and 2 deletions
|
@ -3202,8 +3202,7 @@ static int ar9300_compress_decision(struct ath_hw *ah,
|
||||||
it, length);
|
it, length);
|
||||||
break;
|
break;
|
||||||
case _CompressBlock:
|
case _CompressBlock:
|
||||||
if (reference == 0) {
|
if (reference != 0) {
|
||||||
} else {
|
|
||||||
eep = ar9003_eeprom_struct_find_by_id(reference);
|
eep = ar9003_eeprom_struct_find_by_id(reference);
|
||||||
if (eep == NULL) {
|
if (eep == NULL) {
|
||||||
ath_dbg(common, EEPROM,
|
ath_dbg(common, EEPROM,
|
||||||
|
|
Loading…
Add table
Reference in a new issue