All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: Fix checkpatch issue with brackets in rtw_ap.c
@ 2014-10-21 17:34 Nicholas Krause
  2014-10-22  3:31 ` Jeff Kirsher
  0 siblings, 1 reply; 7+ messages in thread
From: Nicholas Krause @ 2014-10-21 17:34 UTC (permalink / raw)
  To: kernelnewbies

Fix checkpatch error message with opening bracket of if statement,
not being on the same line as a if statement in rtw_ap.c

Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
---
 drivers/staging/rtl8723au/core/rtw_ap.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8723au/core/rtw_ap.c b/drivers/staging/rtl8723au/core/rtw_ap.c
index 6b4092f..927b2a6 100644
--- a/drivers/staging/rtl8723au/core/rtw_ap.c
+++ b/drivers/staging/rtl8723au/core/rtw_ap.c
@@ -1567,8 +1567,7 @@ void bss_cap_update_on_sta_join23a(struct rtw_adapter *padapter, struct sta_info
 		}
 	}
 
-	if (rtw_ht_operation_update(padapter) > 0)
-	{
+	if (rtw_ht_operation_update(padapter) > 0) {
 		update_beacon23a(padapter, WLAN_EID_HT_CAPABILITY, NULL, false);
 		update_beacon23a(padapter, WLAN_EID_HT_OPERATION, NULL, true);
 	}
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-10-22  5:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-21 17:34 [PATCH] staging: Fix checkpatch issue with brackets in rtw_ap.c Nicholas Krause
2014-10-22  3:31 ` Jeff Kirsher
2014-10-22  4:50   ` Sudip Mukherjee
2014-10-22  5:05     ` nick
2014-10-22  5:25       ` Sudip Mukherjee
2014-10-22  5:28       ` Jeff Kirsher
2014-10-22  5:20     ` Jeff Kirsher

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.