Skip to content
Snippets Groups Projects
Commit 1898144b authored by John Crispin's avatar John Crispin
Browse files

mt76: fix compile error


gcc complained about uninitialized variables

Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>

SVN-Revision: 49065
parent 5d2f529c
No related branches found
No related tags found
No related merge requests found
--- a/mt7603_mac.c
+++ b/mt7603_mac.c
@@ -474,7 +474,7 @@
bool stbc = false;
int n_rates = sta->n_rates;
u8 bw, bw_prev, bw_idx = 0;
- u16 val[8];
+ u16 val[8] = { 0 };
u32 w9 = mt76_rr(dev, addr + 9 * 4);
int count;
int i;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment