summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8723bs
diff options
context:
space:
mode:
authorJavier F. Arias <jarias.linux@gmail.com>2019-10-08 19:25:05 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-10-10 10:55:03 +0200
commitaf2f2c5e20bff6137684d7100d84da2aaea37aed (patch)
tree422436a8f4e974d604f6f4989c83d4f376d7775e /drivers/staging/rtl8723bs
parenta9ce2354f7cbecf114a6bc6cd0734e7a9cc04e13 (diff)
downloadlinux-af2f2c5e20bff6137684d7100d84da2aaea37aed.tar.bz2
staging: rtl8723bs: Fix function call wrapping style
Fix the wrapping style used for the function call. Issue found by checkpatch. Signed-off-by: Javier F. Arias <jarias.linux@gmail.com> Link: https://lore.kernel.org/r/f43f9295d7412d610e278be608fba6f2cc14cac9.1570577926.git.jarias.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8723bs')
-rw-r--r--drivers/staging/rtl8723bs/core/rtw_ap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8723bs/core/rtw_ap.c b/drivers/staging/rtl8723bs/core/rtw_ap.c
index e3246a77e2a5..cec2f9f2d5ca 100644
--- a/drivers/staging/rtl8723bs/core/rtw_ap.c
+++ b/drivers/staging/rtl8723bs/core/rtw_ap.c
@@ -216,9 +216,9 @@ void expire_timeout_chk(struct adapter *padapter)
/* check auth_queue */
#ifdef DBG_EXPIRATION_CHK
if (phead != plist) {
- DBG_871X(FUNC_NDEV_FMT" auth_list, cnt:%u\n"
- , FUNC_NDEV_ARG(padapter->pnetdev)
- , pstapriv->auth_list_cnt);
+ DBG_871X(FUNC_NDEV_FMT" auth_list, cnt:%u\n",
+ FUNC_NDEV_ARG(padapter->pnetdev),
+ pstapriv->auth_list_cnt);
}
#endif
while (phead != plist) {