diff options
author | Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com> | 2012-06-27 10:30:27 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-06-28 14:37:46 -0400 |
commit | d8fffb4a9e13d1130b4fd0e577973704cad79f40 (patch) | |
tree | c189d0d0927c640973a89b5f2cb82bcfe0e01e65 | |
parent | 812944891c598300afcc5628905d775019f25310 (diff) |
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: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/mci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/mci.c b/drivers/net/wireless/ath/ath9k/mci.c index c40e568b5c2b..64cc782587d8 100644 --- a/drivers/net/wireless/ath/ath9k/mci.c +++ b/drivers/net/wireless/ath/ath9k/mci.c | |||
@@ -348,7 +348,7 @@ static void ath_mci_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload) | |||
348 | 348 | ||
349 | seq_num = *((u32 *)(rx_payload + 12)); | 349 | seq_num = *((u32 *)(rx_payload + 12)); |
350 | ath_dbg(common, MCI, | 350 | ath_dbg(common, MCI, |
351 | "BT_Status_Update: is_link=%d, linkId=%d, state=%d, SEQ=%d\n", | 351 | "BT_Status_Update: is_link=%d, linkId=%d, state=%d, SEQ=%u\n", |
352 | profile_status.is_link, profile_status.conn_handle, | 352 | profile_status.is_link, profile_status.conn_handle, |
353 | profile_status.is_critical, seq_num); | 353 | profile_status.is_critical, seq_num); |
354 | 354 | ||