Commit 094a1d92 authored by Johannes Stezenbach's avatar Johannes Stezenbach Committed by John W. Linville

rt2x00: trivial: add missing \n on warnings

Signed-off-by: default avatarJohannes Stezenbach <js@sig21.net>
Signed-off-by: default avatarIvo van Doorn <IvDoorn@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 89b25f60
...@@ -686,7 +686,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev) ...@@ -686,7 +686,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev)
* this tx status. * this tx status.
*/ */
WARNING(rt2x00dev, "Got TX status report with " WARNING(rt2x00dev, "Got TX status report with "
"unexpected pid %u, dropping", qid); "unexpected pid %u, dropping\n", qid);
break; break;
} }
...@@ -697,7 +697,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev) ...@@ -697,7 +697,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev)
* processing here and drop the tx status * processing here and drop the tx status
*/ */
WARNING(rt2x00dev, "Got TX status for an unavailable " WARNING(rt2x00dev, "Got TX status for an unavailable "
"queue %u, dropping", qid); "queue %u, dropping\n", qid);
break; break;
} }
...@@ -707,7 +707,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev) ...@@ -707,7 +707,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev)
* and drop the tx status. * and drop the tx status.
*/ */
WARNING(rt2x00dev, "Got TX status for an empty " WARNING(rt2x00dev, "Got TX status for an empty "
"queue %u, dropping", qid); "queue %u, dropping\n", qid);
break; break;
} }
......
...@@ -253,7 +253,7 @@ static void rt2800usb_watchdog(struct rt2x00_dev *rt2x00dev) ...@@ -253,7 +253,7 @@ static void rt2800usb_watchdog(struct rt2x00_dev *rt2x00dev)
rt2800_register_read(rt2x00dev, TXRXQ_PCNT, &reg); rt2800_register_read(rt2x00dev, TXRXQ_PCNT, &reg);
if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX0Q)) { if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX0Q)) {
WARNING(rt2x00dev, "TX HW queue 0 timed out," WARNING(rt2x00dev, "TX HW queue 0 timed out,"
" invoke forced kick"); " invoke forced kick\n");
rt2800_register_write(rt2x00dev, PBF_CFG, 0xf40012); rt2800_register_write(rt2x00dev, PBF_CFG, 0xf40012);
...@@ -269,7 +269,7 @@ static void rt2800usb_watchdog(struct rt2x00_dev *rt2x00dev) ...@@ -269,7 +269,7 @@ static void rt2800usb_watchdog(struct rt2x00_dev *rt2x00dev)
rt2800_register_read(rt2x00dev, TXRXQ_PCNT, &reg); rt2800_register_read(rt2x00dev, TXRXQ_PCNT, &reg);
if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX1Q)) { if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX1Q)) {
WARNING(rt2x00dev, "TX HW queue 1 timed out," WARNING(rt2x00dev, "TX HW queue 1 timed out,"
" invoke forced kick"); " invoke forced kick\n");
rt2800_register_write(rt2x00dev, PBF_CFG, 0xf4000a); rt2800_register_write(rt2x00dev, PBF_CFG, 0xf4000a);
......
...@@ -745,7 +745,7 @@ void rt2x00mac_flush(struct ieee80211_hw *hw, bool drop) ...@@ -745,7 +745,7 @@ void rt2x00mac_flush(struct ieee80211_hw *hw, bool drop)
} }
if (!rt2x00queue_empty(queue)) if (!rt2x00queue_empty(queue))
WARNING(rt2x00dev, "Failed to flush queue %d", queue->qid); WARNING(rt2x00dev, "Failed to flush queue %d\n", queue->qid);
} }
ieee80211_wake_queues(hw); ieee80211_wake_queues(hw);
......
...@@ -300,7 +300,7 @@ static void rt2x00usb_watchdog_tx_dma(struct data_queue *queue) ...@@ -300,7 +300,7 @@ static void rt2x00usb_watchdog_tx_dma(struct data_queue *queue)
unsigned short threshold = queue->threshold; unsigned short threshold = queue->threshold;
WARNING(queue->rt2x00dev, "TX queue %d DMA timed out," WARNING(queue->rt2x00dev, "TX queue %d DMA timed out,"
" invoke forced forced reset", queue->qid); " invoke forced forced reset\n", queue->qid);
/* /*
* Temporarily disable the TX queue, this will force mac80211 * Temporarily disable the TX queue, this will force mac80211
...@@ -335,7 +335,7 @@ static void rt2x00usb_watchdog_tx_dma(struct data_queue *queue) ...@@ -335,7 +335,7 @@ static void rt2x00usb_watchdog_tx_dma(struct data_queue *queue)
static void rt2x00usb_watchdog_tx_status(struct data_queue *queue) static void rt2x00usb_watchdog_tx_status(struct data_queue *queue)
{ {
WARNING(queue->rt2x00dev, "TX queue %d status timed out," WARNING(queue->rt2x00dev, "TX queue %d status timed out,"
" invoke forced tx handler", queue->qid); " invoke forced tx handler\n", queue->qid);
ieee80211_queue_work(queue->rt2x00dev->hw, &queue->rt2x00dev->txdone_work); ieee80211_queue_work(queue->rt2x00dev->hw, &queue->rt2x00dev->txdone_work);
} }
......
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