Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1356531 > unrolled thread

[PATCHv2] staging: rtl8723au: Fix line longer than 80 columns.

Started byEdward Lipinsky <ellipinsky@gmail.com>
First post2016-03-12 20:50 +0100
Last post2016-03-12 20:50 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCHv2] staging: rtl8723au: Fix line longer than 80 columns. Edward Lipinsky <ellipinsky@gmail.com> - 2016-03-12 20:50 +0100

#1356531 — [PATCHv2] staging: rtl8723au: Fix line longer than 80 columns.

FromEdward Lipinsky <ellipinsky@gmail.com>
Date2016-03-12 20:50 +0100
Subject[PATCHv2] staging: rtl8723au: Fix line longer than 80 columns.
Message-ID<rbXHY-2GP-7@gated-at.bofh.it>
This patch fixes the checkpatch.pl warning:

WARNING: line over 80 characters

Signed-off-by: Edward Lipinsky <ellipinsky@gmail.com>
---
Change in v2:
        - Break the line after the format string, as suggested by Joe
	  Perches <joe@perches.com>.

 drivers/staging/rtl8723au/core/rtw_ap.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723au/core/rtw_ap.c b/drivers/staging/rtl8723au/core/rtw_ap.c
index ce4b589..67c9d90 100644
--- a/drivers/staging/rtl8723au/core/rtw_ap.c
+++ b/drivers/staging/rtl8723au/core/rtw_ap.c
@@ -1834,7 +1834,8 @@ void stop_ap_mode23a(struct rtw_adapter *padapter)
 	}
 	spin_unlock_bh(&pacl_node_q->lock);
 
-	DBG_8723A("%s, free acl_node_queue, num =%d\n", __func__, pacl_list->num);
+	DBG_8723A("%s, free acl_node_queue, num =%d\n",
+		  __func__, pacl_list->num);
 
 	rtw_sta_flush23a(padapter);
 
-- 
1.7.9.5

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web