[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20160904192626.17197-5-mail@beyermatthias.de>
Date: Sun, 4 Sep 2016 21:26:25 +0200
From: Matthias Beyer <mail@...ermatthias.de>
To: gregkh@...uxfoundation.org
Cc: Matthias Beyer <mail@...ermatthias.de>,
Larry Finger <Larry.Finger@...inger.net>,
Jes Sorensen <Jes.Sorensen@...hat.com>,
Manuel Messner <manuel.johannes.messner@...furtwangen.de>,
Geliang Tang <geliangtang@....com>,
Cihangir Akturk <cakturk@...il.com>,
linux-wireless@...r.kernel.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 4/5] drivers: staging: rtl8723au: core: Fix "space prohibited" warning
This patch fixes the "space prohibited between function name and open
parenthesis '('" warning from checkpatch.pl
Signed-off-by: Matthias Beyer <mail@...ermatthias.de>
Signed-off-by: Manuel Messner <manuel.johannes.messner@...furtwangen.de>
---
drivers/staging/rtl8723au/core/rtw_mlme.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/rtl8723au/core/rtw_mlme.c b/drivers/staging/rtl8723au/core/rtw_mlme.c
index 196447b..1e01d62 100644
--- a/drivers/staging/rtl8723au/core/rtw_mlme.c
+++ b/drivers/staging/rtl8723au/core/rtw_mlme.c
@@ -900,15 +900,15 @@ rtw_joinbss_update_stainfo(struct rtw_adapter *padapter,
padapter->securitypriv.dot11PrivacyAlgrthm;
memset(&psta->dot118021x_UncstKey, 0,
- sizeof (union Keytype));
+ sizeof(union Keytype));
memset(&psta->dot11tkiprxmickey, 0,
- sizeof (union Keytype));
+ sizeof(union Keytype));
memset(&psta->dot11tkiptxmickey, 0,
- sizeof (union Keytype));
+ sizeof(union Keytype));
- memset(&psta->dot11txpn, 0, sizeof (union pn48));
- memset(&psta->dot11rxpn, 0, sizeof (union pn48));
+ memset(&psta->dot11txpn, 0, sizeof(union pn48));
+ memset(&psta->dot11rxpn, 0, sizeof(union pn48));
}
/* Commented by Albert 2012/07/21 */
--
2.9.3
Powered by blists - more mailing lists