Skip to content

Commit

Permalink
mt7603: fix faulty variable initialization in last commit
Browse files Browse the repository at this point in the history
Should be harmless, since watchdog reset is only performed when necessary

Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
nbd168 committed Nov 8, 2018
1 parent 417cf49 commit 29d9532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mt7603/main.c
Expand Up @@ -129,7 +129,7 @@ mt7603_set_channel(struct mt7603_dev *dev, struct cfg80211_chan_def *def)
u8 *rssi_data = (u8 *) dev->mt76.eeprom.data;
int idx, ret;
u8 bw = MT_BW_20;
bool failed = true;
bool failed = false;

cancel_delayed_work_sync(&dev->mac_work);

Expand Down

0 comments on commit 29d9532

Please sign in to comment.