Commit 9cf67ec7 authored by Felix Fietkau's avatar Felix Fietkau

mt76: fix signedness of rx status signal field

It is usually negative, so it needs to be signed.
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 02e5a769
...@@ -497,7 +497,7 @@ struct mt76_rx_status { ...@@ -497,7 +497,7 @@ struct mt76_rx_status {
u8 rate_idx; u8 rate_idx;
u8 nss; u8 nss;
u8 band; u8 band;
u8 signal; s8 signal;
u8 chains; u8 chains;
s8 chain_signal[IEEE80211_MAX_CHAINS]; s8 chain_signal[IEEE80211_MAX_CHAINS];
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment