diff options
| author | Hans Wennborg <hans@hanshq.net> | 2014-08-04 04:21:06 +0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-08-16 23:23:11 +0400 |
| commit | 967544a65cf5d70b2d2ff069349eeca0cbf9e0b1 (patch) | |
| tree | 7dc67e43f1851f1edbd448fbfc7b02ba88564a82 | |
| parent | 714340db24b8b34dd9befc87db0e8c51040a4a7f (diff) | |
| download | linux-967544a65cf5d70b2d2ff069349eeca0cbf9e0b1.tar.xz | |
staging: rtl8821ae: fix %d confusingly prefixed with 0x in format strings
Signed-off-by: Hans Wennborg <hans@hanshq.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/rtl8821ae/pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8821ae/pci.c b/drivers/staging/rtl8821ae/pci.c index 26d7b2fc852a..b8187887d85f 100644 --- a/drivers/staging/rtl8821ae/pci.c +++ b/drivers/staging/rtl8821ae/pci.c @@ -662,7 +662,7 @@ static void _rtl_pci_tx_isr(struct ieee80211_hw *hw, int prio) RT_TRACE(COMP_ERR, DBG_LOUD, ("more desc left, wake" "skb_queue@%d,ring->idx = %d," - "skb_queue_len = 0x%d\n", + "skb_queue_len = 0x%x\n", prio, ring->idx, skb_queue_len(&ring->queue))); @@ -1650,7 +1650,7 @@ static int rtl_pci_tx(struct ieee80211_hw *hw, if ((own == 1) && (hw_queue != BEACON_QUEUE)) { RT_TRACE(COMP_ERR, DBG_WARNING, ("No more TX desc@%d, ring->idx = %d," - "idx = %d, skb_queue_len = 0x%d\n", + "idx = %d, skb_queue_len = 0x%x\n", hw_queue, ring->idx, idx, skb_queue_len(&ring->queue))); @@ -1695,7 +1695,7 @@ static int rtl_pci_tx(struct ieee80211_hw *hw, RT_TRACE(COMP_ERR, DBG_LOUD, ("less desc left, stop skb_queue@%d, " "ring->idx = %d," - "idx = %d, skb_queue_len = 0x%d\n", + "idx = %d, skb_queue_len = 0x%x\n", hw_queue, ring->idx, idx, skb_queue_len(&ring->queue))); |
