diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-03-15 16:26:46 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-04-09 16:37:17 -0400 |
commit | 0ca24daff5b8d584f91172f08f34ce0856ebe4a1 (patch) | |
tree | 46c28d09fd8efb43e9402233b260a0430aa7b1b0 /drivers/net/wireless/iwlwifi/iwl-agn-tx.c | |
parent | e1f0c501c01e4e26a91750a98d6f7616dfa4e169 (diff) |
iwlwifi: add trailing newline to various messages
A whole bunch of messages, even some recent ones,
didn't include a trailing newline so add it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-agn-tx.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn-tx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-tx.c b/drivers/net/wireless/iwlwifi/iwl-agn-tx.c index 34adedc74d35..453d8808f716 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-tx.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-tx.c | |||
@@ -515,7 +515,7 @@ int iwlagn_tx_agg_stop(struct iwl_priv *priv, struct ieee80211_vif *vif, | |||
515 | return 0; | 515 | return 0; |
516 | } | 516 | } |
517 | 517 | ||
518 | IWL_DEBUG_TX_QUEUES(priv, "Can proceed: ssn = next_recl = %d", | 518 | IWL_DEBUG_TX_QUEUES(priv, "Can proceed: ssn = next_recl = %d\n", |
519 | tid_data->agg.ssn); | 519 | tid_data->agg.ssn); |
520 | turn_off: | 520 | turn_off: |
521 | priv->tid_data[sta_id][tid].agg.state = IWL_AGG_OFF; | 521 | priv->tid_data[sta_id][tid].agg.state = IWL_AGG_OFF; |
@@ -570,13 +570,13 @@ int iwlagn_tx_agg_start(struct iwl_priv *priv, struct ieee80211_vif *vif, | |||
570 | } | 570 | } |
571 | 571 | ||
572 | if (*ssn == tid_data->next_reclaimed) { | 572 | if (*ssn == tid_data->next_reclaimed) { |
573 | IWL_DEBUG_TX_QUEUES(priv, "Can proceed: ssn = next_recl = %d", | 573 | IWL_DEBUG_TX_QUEUES(priv, "Can proceed: ssn = next_recl = %d\n", |
574 | tid_data->agg.ssn); | 574 | tid_data->agg.ssn); |
575 | tid_data->agg.state = IWL_AGG_ON; | 575 | tid_data->agg.state = IWL_AGG_ON; |
576 | ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid); | 576 | ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
577 | } else { | 577 | } else { |
578 | IWL_DEBUG_TX_QUEUES(priv, "Can't proceed: ssn %d, " | 578 | IWL_DEBUG_TX_QUEUES(priv, "Can't proceed: ssn %d, " |
579 | "next_reclaimed = %d", | 579 | "next_reclaimed = %d\n", |
580 | tid_data->agg.ssn, | 580 | tid_data->agg.ssn, |
581 | tid_data->next_reclaimed); | 581 | tid_data->next_reclaimed); |
582 | tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA; | 582 | tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA; |
@@ -1059,7 +1059,7 @@ int iwlagn_rx_reply_tx(struct iwl_priv *priv, struct iwl_rx_cmd_buffer *rxb, | |||
1059 | if (tid != IWL_TID_NON_QOS) { | 1059 | if (tid != IWL_TID_NON_QOS) { |
1060 | priv->tid_data[sta_id][tid].next_reclaimed = | 1060 | priv->tid_data[sta_id][tid].next_reclaimed = |
1061 | next_reclaimed; | 1061 | next_reclaimed; |
1062 | IWL_DEBUG_TX_REPLY(priv, "Next reclaimed packet:%d", | 1062 | IWL_DEBUG_TX_REPLY(priv, "Next reclaimed packet:%d\n", |
1063 | next_reclaimed); | 1063 | next_reclaimed); |
1064 | } | 1064 | } |
1065 | 1065 | ||