rt2x00: trivial: add missing \n on warnings
authorJohannes Stezenbach <js@sig21.net>
Mon, 13 Dec 2010 11:34:00 +0000 (12:34 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 13 Dec 2010 20:23:35 +0000 (15:23 -0500)
Signed-off-by: Johannes Stezenbach <js@sig21.net>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/rt2x00/rt2800pci.c
drivers/net/wireless/rt2x00/rt2800usb.c
drivers/net/wireless/rt2x00/rt2x00mac.c
drivers/net/wireless/rt2x00/rt2x00usb.c

index 533a8fc..4944722 100644 (file)
@@ -686,7 +686,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev)
                         * this tx status.
                         */
                        WARNING(rt2x00dev, "Got TX status report with "
-                                          "unexpected pid %u, dropping", qid);
+                                          "unexpected pid %u, dropping\n", qid);
                        break;
                }
 
@@ -697,7 +697,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev)
                         * processing here and drop the tx status
                         */
                        WARNING(rt2x00dev, "Got TX status for an unavailable "
-                                          "queue %u, dropping", qid);
+                                          "queue %u, dropping\n", qid);
                        break;
                }
 
@@ -707,7 +707,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev)
                         * and drop the tx status.
                         */
                        WARNING(rt2x00dev, "Got TX status for an empty "
-                                          "queue %u, dropping", qid);
+                                          "queue %u, dropping\n", qid);
                        break;
                }
 
index a150fcc..1dfa59d 100644 (file)
@@ -253,7 +253,7 @@ static void rt2800usb_watchdog(struct rt2x00_dev *rt2x00dev)
        rt2800_register_read(rt2x00dev, TXRXQ_PCNT, &reg);
        if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX0Q)) {
                WARNING(rt2x00dev, "TX HW queue 0 timed out,"
-                       " invoke forced kick");
+                       " invoke forced kick\n");
 
                rt2800_register_write(rt2x00dev, PBF_CFG, 0xf40012);
 
@@ -269,7 +269,7 @@ static void rt2800usb_watchdog(struct rt2x00_dev *rt2x00dev)
        rt2800_register_read(rt2x00dev, TXRXQ_PCNT, &reg);
        if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX1Q)) {
                WARNING(rt2x00dev, "TX HW queue 1 timed out,"
-                       " invoke forced kick");
+                       " invoke forced kick\n");
 
                rt2800_register_write(rt2x00dev, PBF_CFG, 0xf4000a);
 
index 829bf4b..7ad4b27 100644 (file)
@@ -745,7 +745,7 @@ void rt2x00mac_flush(struct ieee80211_hw *hw, bool drop)
                }
 
                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);
index 3a6c83e..608200e 100644 (file)
@@ -300,7 +300,7 @@ static void rt2x00usb_watchdog_tx_dma(struct data_queue *queue)
        unsigned short threshold = queue->threshold;
 
        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
@@ -335,7 +335,7 @@ static void rt2x00usb_watchdog_tx_dma(struct data_queue *queue)
 static void rt2x00usb_watchdog_tx_status(struct data_queue *queue)
 {
        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);
 }