Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d8fffb4a authored by Mohammed Shafi Shajakhan's avatar Mohammed Shafi Shajakhan Committed by John W. Linville
Browse files

ath9k: Fix signedness in a MCI debug message



seems i got a message like this
ath: phy0: BT_Status_Update: is_link=0, linkId=2,
state=1, SEQ=-2085766476 initially.

Signed-off-by: default avatarMohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 81294489
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -348,7 +348,7 @@ static void ath_mci_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload)


		seq_num = *((u32 *)(rx_payload + 12));
		seq_num = *((u32 *)(rx_payload + 12));
		ath_dbg(common, MCI,
		ath_dbg(common, MCI,
			"BT_Status_Update: is_link=%d, linkId=%d, state=%d, SEQ=%d\n",
			"BT_Status_Update: is_link=%d, linkId=%d, state=%d, SEQ=%u\n",
			profile_status.is_link, profile_status.conn_handle,
			profile_status.is_link, profile_status.conn_handle,
			profile_status.is_critical, seq_num);
			profile_status.is_critical, seq_num);