All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marco Cesati <marcocesati@gmail.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Hans de Goede <hdegoede@redhat.com>,
	Larry Finger <Larry.Finger@lwfinger.net>,
	devel@driverdev.osuosl.org
Subject: [PATCH 51/57] Staging: rtl8723bs: fix spaces in rtw_cmd.h
Date: Mon, 15 Mar 2021 18:06:12 +0100	[thread overview]
Message-ID: <20210315170618.2566-52-marcocesati@gmail.com> (raw)
In-Reply-To: <20210315170618.2566-1-marcocesati@gmail.com>

This commit fixes the following checkpatch.pl errors:

    ERROR:POINTER_LOCATION: "(foo*)" should be "(foo *)"
    #789: FILE: ./include/rtw_cmd.h:789:
    +	void (*func)(void*);

    ERROR:POINTER_LOCATION: "foo* bar" should be "foo *bar"
    #827: FILE: ./include/rtw_cmd.h:827:
    +extern u8 rtw_joinbss_cmd(struct adapter  *padapter, struct wlan_network* pnetwork);

Signed-off-by: Marco Cesati <marcocesati@gmail.com>
---
 drivers/staging/rtl8723bs/include/rtw_cmd.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8723bs/include/rtw_cmd.h b/drivers/staging/rtl8723bs/include/rtw_cmd.h
index 9e42731f8fa3..b15a5abca17c 100644
--- a/drivers/staging/rtl8723bs/include/rtw_cmd.h
+++ b/drivers/staging/rtl8723bs/include/rtw_cmd.h
@@ -786,7 +786,7 @@ struct TDLSoption_param {
 
 /*H2C Handler index: 64 */
 struct RunInThread_param {
-	void (*func)(void*);
+	void (*func)(void *);
 	void *context;
 };
 
@@ -824,7 +824,7 @@ struct sta_info;
 extern u8 rtw_setstakey_cmd(struct adapter  *padapter, struct sta_info *sta, u8 unicast_key, bool enqueue);
 extern u8 rtw_clearstakey_cmd(struct adapter *padapter, struct sta_info *sta, u8 enqueue);
 
-extern u8 rtw_joinbss_cmd(struct adapter  *padapter, struct wlan_network* pnetwork);
+extern u8 rtw_joinbss_cmd(struct adapter *padapter, struct wlan_network *pnetwork);
 u8 rtw_disassoc_cmd(struct adapter *padapter, u32 deauth_timeout_ms, bool enqueue);
 extern u8 rtw_setopmode_cmd(struct adapter  *padapter, enum NDIS_802_11_NETWORK_INFRASTRUCTURE networktype, bool enqueue);
 extern u8 rtw_setdatarate_cmd(struct adapter  *padapter, u8 *rateset);
-- 
2.30.2

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

  parent reply	other threads:[~2021-03-15 17:15 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-15 17:05 [PATCH 00/57] Staging: rtl8723bs: fix POINTER_LOCATION whitespaces Marco Cesati
2021-03-15 17:05 ` [PATCH 01/57] Staging: rtl8723bs: fix spaces in rtw_cmd.c Marco Cesati
2021-03-15 17:05 ` [PATCH 02/57] Staging: rtl8723bs: fix spaces in HalBtc8723b1Ant.c Marco Cesati
2021-03-15 17:05 ` [PATCH 03/57] Staging: rtl8723bs: fix spaces in HalBtc8723b1Ant.h Marco Cesati
2021-03-15 17:05 ` [PATCH 04/57] Staging: rtl8723bs: fix spaces in HalBtc8723b2Ant.c Marco Cesati
2021-03-15 17:05 ` [PATCH 05/57] Staging: rtl8723bs: fix spaces in HalBtc8723b2Ant.h Marco Cesati
2021-03-15 17:05 ` [PATCH 06/57] Staging: rtl8723bs: fix spaces in HalBtcOutSrc.h Marco Cesati
2021-03-15 17:05 ` [PATCH 07/57] Staging: rtl8723bs: fix spaces in HalHWImg8723B_BB.c Marco Cesati
2021-03-15 17:05 ` [PATCH 08/57] Staging: rtl8723bs: fix spaces in HalHWImg8723B_BB.h Marco Cesati
2021-03-15 17:05 ` [PATCH 09/57] Staging: rtl8723bs: fix spaces in HalHWImg8723B_MAC.c Marco Cesati
2021-03-15 17:05 ` [PATCH 10/57] Staging: rtl8723bs: fix spaces in HalHWImg8723B_MAC.h Marco Cesati
2021-03-15 17:05 ` [PATCH 11/57] Staging: rtl8723bs: fix spaces in HalHWImg8723B_RF.c Marco Cesati
2021-03-15 17:05 ` [PATCH 12/57] Staging: rtl8723bs: fix spaces in HalHWImg8723B_RF.h Marco Cesati
2021-03-15 17:05 ` [PATCH 13/57] Staging: rtl8723bs: fix spaces in HalPhyRf.c Marco Cesati
2021-03-15 17:05 ` [PATCH 14/57] Staging: rtl8723bs: fix spaces in HalPhyRf.h Marco Cesati
2021-03-15 17:05 ` [PATCH 15/57] Staging: rtl8723bs: fix spaces in HalPhyRf_8723B.c Marco Cesati
2021-03-15 17:05 ` [PATCH 16/57] Staging: rtl8723bs: fix spaces in HalPhyRf_8723B.h Marco Cesati
2021-03-15 17:05 ` [PATCH 17/57] Staging: rtl8723bs: fix spaces in hal_btcoex.c Marco Cesati
2021-03-15 17:05 ` [PATCH 18/57] Staging: rtl8723bs: fix spaces in hal_com.c Marco Cesati
2021-03-15 17:05 ` [PATCH 19/57] Staging: rtl8723bs: fix spaces in hal_com_phycfg.c Marco Cesati
2021-03-15 17:05 ` [PATCH 20/57] Staging: rtl8723bs: fix spaces in odm.c Marco Cesati
2021-03-15 17:05 ` [PATCH 21/57] Staging: rtl8723bs: fix spaces in odm.h Marco Cesati
2021-03-15 17:05 ` [PATCH 22/57] Staging: rtl8723bs: fix spaces in odm_CfoTracking.c Marco Cesati
2021-03-15 17:05 ` [PATCH 23/57] Staging: rtl8723bs: fix spaces in odm_DIG.c Marco Cesati
2021-03-15 17:05 ` [PATCH 24/57] Staging: rtl8723bs: fix in odm_DynamicBBPowerSaving.c Marco Cesati
2021-03-15 17:05 ` [PATCH 25/57] Staging: rtl8723bs: fix spaces in odm_DynamicTxPower.c Marco Cesati
2021-03-15 17:05 ` [PATCH 26/57] Staging: rtl8723bs: fix spaces in odm_EdcaTurboCheck.c Marco Cesati
2021-03-15 17:05 ` [PATCH 27/57] Staging: rtl8723bs: fix spaces in odm_HWConfig.c Marco Cesati
2021-03-15 17:05 ` [PATCH 28/57] Staging: rtl8723bs: fix spaces in odm_HWConfig.h Marco Cesati
2021-03-15 17:05 ` [PATCH 29/57] Staging: rtl8723bs: fix spaces in odm_NoiseMonitor.c Marco Cesati
2021-03-15 17:05 ` [PATCH 30/57] Staging: rtl8723bs: fix spaces in odm_PathDiv.c Marco Cesati
2021-03-15 17:05 ` [PATCH 31/57] Staging: rtl8723bs: fix spaces in odm_RegConfig8723B.c Marco Cesati
2021-03-15 17:05 ` [PATCH 32/57] Staging: rtl8723bs: fix spaces in odm_RegConfig8723B.h Marco Cesati
2021-03-15 17:05 ` [PATCH 33/57] Staging: rtl8723bs: fix spaces in odm_debug.c Marco Cesati
2021-03-15 17:05 ` [PATCH 34/57] Staging: rtl8723bs: fix spaces in odm_debug.h Marco Cesati
2021-03-15 17:05 ` [PATCH 35/57] Staging: rtl8723bs: fix spaces in rtl8723b_dm.c Marco Cesati
2021-03-15 17:05 ` [PATCH 36/57] Staging: rtl8723bs: fix spaces in rtl8723b_hal_init.c Marco Cesati
2021-03-15 17:05 ` [PATCH 37/57] Staging: rtl8723bs: fix spaces in rtl8723b_phycfg.c Marco Cesati
2021-03-15 17:05 ` [PATCH 38/57] Staging: rtl8723bs: fix spaces in HalPwrSeqCmd.h Marco Cesati
2021-03-15 17:06 ` [PATCH 39/57] Staging: rtl8723bs: fix spaces in basic_types.h Marco Cesati
2021-03-15 17:06 ` [PATCH 40/57] Staging: rtl8723bs: fix spaces in drv_types.h Marco Cesati
2021-03-15 17:06 ` [PATCH 41/57] Staging: rtl8723bs: fix spaces in hal_com.h Marco Cesati
2021-03-15 17:06 ` [PATCH 42/57] Staging: rtl8723bs: fix spaces in hal_com_h2c.h Marco Cesati
2021-03-15 17:06 ` [PATCH 43/57] Staging: rtl8723bs: fix spaces in hal_com_phycfg.h Marco Cesati
2021-03-15 17:06 ` [PATCH 44/57] Staging: rtl8723bs: fix spaces in ieee80211.h Marco Cesati
2021-03-15 17:06 ` [PATCH 45/57] Staging: rtl8723bs: fix spaces in ioctl_cfg80211.h Marco Cesati
2021-03-15 17:06 ` [PATCH 46/57] Staging: rtl8723bs: fix spaces in osdep_intf.h Marco Cesati
2021-03-15 17:06 ` [PATCH 47/57] Staging: rtl8723bs: fix spaces in osdep_service.h Marco Cesati
2021-03-15 17:06 ` [PATCH 48/57] Staging: rtl8723bs: fix spaces in osdep_service_linux.h Marco Cesati
2021-03-15 17:06 ` [PATCH 49/57] Staging: rtl8723bs: fix spaces in recv_osdep.h Marco Cesati
2021-03-15 17:06 ` [PATCH 50/57] Staging: rtl8723bs: fix spaces in rtl8723b_xmit.h Marco Cesati
2021-03-15 17:06 ` Marco Cesati [this message]
2021-03-15 17:06 ` [PATCH 52/57] Staging: rtl8723bs: fix spaces in rtw_ioctl_set.h Marco Cesati
2021-03-15 17:06 ` [PATCH 53/57] Staging: rtl8723bs: fix spaces in rtw_mlme_ext.h Marco Cesati
2021-03-15 17:06 ` [PATCH 54/57] Staging: rtl8723bs: fix spaces in xmit_osdep.h Marco Cesati
2021-03-15 17:06 ` [PATCH 55/57] Staging: rtl8723bs: fix spaces in os_intfs.c Marco Cesati
2021-03-15 17:06 ` [PATCH 56/57] Staging: rtl8723bs: fix spaces in osdep_service.c Marco Cesati
2021-03-15 17:06 ` [PATCH 57/57] Staging: rtl8723bs: fix spaces in xmit_linux.c Marco Cesati
2021-03-16  8:21 ` [PATCH 00/57] Staging: rtl8723bs: fix POINTER_LOCATION whitespaces Dan Carpenter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210315170618.2566-52-marcocesati@gmail.com \
    --to=marcocesati@gmail.com \
    --cc=Larry.Finger@lwfinger.net \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=hdegoede@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.