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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -497,7 +497,7 @@ struct mt76_rx_status {
	u8 rate_idx;
	u8 nss;
	u8 band;
	u8 signal;
	s8 signal;
	u8 chains;
	s8 chain_signal[IEEE80211_MAX_CHAINS];
};