All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 51/80] staging: wilc1000: rename u32UserConnectPvoid of struct user_conn_req
@ 2015-10-28  7:06 Glen Lee
  2015-10-28  7:06 ` [PATCH 52/80] staging: wilc1000: host_interface.h: move local define variables Glen Lee
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: Glen Lee @ 2015-10-28  7:06 UTC (permalink / raw)
  To: gregkh
  Cc: devel, linux-wireless, tony.cho, glen.lee, leo.kim, austin.shin,
	adel.noureldin, adham.abozaeid, Nicolas.FERRE

From: Leo Kim <leo.kim@atmel.com>

This patch renames u32UserConnectPvoid of struct user_conn_req to arg
to avoid CamelCase naming convention.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
---
 drivers/staging/wilc1000/host_interface.c | 10 +++++-----
 drivers/staging/wilc1000/host_interface.h |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 008d8ba..357f68d 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -1030,7 +1030,7 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
 	hif_drv->usr_conn_req.u8security = pstrHostIFconnectAttr->security;
 	hif_drv->usr_conn_req.tenuAuth_type = pstrHostIFconnectAttr->auth_type;
 	hif_drv->usr_conn_req.conn_result = pstrHostIFconnectAttr->result;
-	hif_drv->usr_conn_req.u32UserConnectPvoid = pstrHostIFconnectAttr->arg;
+	hif_drv->usr_conn_req.arg = pstrHostIFconnectAttr->arg;
 
 	strWIDList[u32WidsCount].id = WID_SUCCESS_FRAME_COUNT;
 	strWIDList[u32WidsCount].type = WID_INT;
@@ -1351,7 +1351,7 @@ static s32 Handle_ConnectTimeout(struct host_if_drv *hif_drv)
 						  &strConnectInfo,
 						  MAC_DISCONNECTED,
 						  NULL,
-						  hif_drv->usr_conn_req.u32UserConnectPvoid);
+						  hif_drv->usr_conn_req.arg);
 
 		kfree(strConnectInfo.pu8ReqIEs);
 		strConnectInfo.pu8ReqIEs = NULL;
@@ -1599,7 +1599,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
 							  &strConnectInfo,
 							  u8MacStatus,
 							  NULL,
-							  hif_drv->usr_conn_req.u32UserConnectPvoid);
+							  hif_drv->usr_conn_req.arg);
 
 			if ((u8MacStatus == MAC_CONNECTED) &&
 			    (strConnectInfo.u16ConnectStatus == SUCCESSFUL_STATUSCODE))	{
@@ -1652,7 +1652,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
 								  NULL,
 								  0,
 								  &strDisconnectNotifInfo,
-								  hif_drv->usr_conn_req.u32UserConnectPvoid);
+								  hif_drv->usr_conn_req.arg);
 			} else {
 				PRINT_ER("Connect result callback function is NULL\n");
 			}
@@ -2018,7 +2018,7 @@ static void Handle_Disconnect(struct host_if_drv *hif_drv)
 							  NULL,
 							  0,
 							  &strDisconnectNotifInfo,
-							  hif_drv->usr_conn_req.u32UserConnectPvoid);
+							  hif_drv->usr_conn_req.arg);
 		} else {
 			PRINT_ER("usr_conn_req.conn_result = NULL\n");
 		}
diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h
index 79e9e87..6f2cf5c 100644
--- a/drivers/staging/wilc1000/host_interface.h
+++ b/drivers/staging/wilc1000/host_interface.h
@@ -208,7 +208,7 @@ struct user_conn_req {
 	size_t ies_len;
 	wilc_connect_result conn_result;
 	bool ht_capable;
-	void *u32UserConnectPvoid;
+	void *arg;
 };
 
 struct drv_handler {
-- 
1.9.1


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

end of thread, other threads:[~2015-10-28  7:07 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-28  7:06 [PATCH 51/80] staging: wilc1000: rename u32UserConnectPvoid of struct user_conn_req Glen Lee
2015-10-28  7:06 ` [PATCH 52/80] staging: wilc1000: host_interface.h: move local define variables Glen Lee
2015-10-28  7:06 ` [PATCH 53/80] staging: wilc1000: rename u8LinkSpeed of struct rf_info Glen Lee
2015-10-28  7:06 ` [PATCH 54/80] staging: wilc1000: rename s8RSSI " Glen Lee
2015-10-28  7:07 ` [PATCH 55/80] staging: wilc1000: rename u32TxCount " Glen Lee
2015-10-28  7:07 ` [PATCH 56/80] staging: wilc1000: rename u32RxCount " Glen Lee
2015-10-28  7:07 ` [PATCH 57/80] staging: wilc1000: rename u32TxFailureCount " Glen Lee
2015-10-28  7:07 ` [PATCH 58/80] staging: wilc1000: rename WPARxGtk of enum KEY_TYPE Glen Lee
2015-10-28  7:07 ` [PATCH 59/80] staging: wilc1000: rename WPAPtk " Glen Lee
2015-10-28  7:07 ` [PATCH 60/80] staging: wilc1000: rename u32RcvdChCount of struct user_scan_req Glen Lee
2015-10-28  7:07 ` [PATCH 61/80] staging: wilc1000: rename tenuAuth_type of struct user_conn_req Glen Lee
2015-10-28  7:07 ` [PATCH 62/80] staging: wilc1000: rename u32ListenSessionID of struct remain_ch Glen Lee
2015-10-28  7:07 ` [PATCH 63/80] staging: wilc1000: rename u64P2p_MgmtTimeout of struct host_if_drv Glen Lee
2015-10-28  7:07 ` [PATCH 64/80] staging: wilc1000: rename u8P2PConnect " Glen Lee
2015-10-28  7:07 ` [PATCH 65/80] staging: wilc1000: rename au8BSSID of struct add_sta_param Glen Lee
2015-10-28  7:07 ` [PATCH 66/80] staging: wilc1000: rename u16AssocID " Glen Lee
2015-10-28  7:07 ` [PATCH 67/80] staging: wilc1000: rename u8NumRates " Glen Lee
2015-10-28  7:07 ` [PATCH 68/80] staging: wilc1000: rename pu8Rates " Glen Lee
2015-10-28  7:07 ` [PATCH 69/80] staging: wilc1000: rename bIsHTSupported " Glen Lee
2015-10-28  7:07 ` [PATCH 70/80] staging: wilc1000: rename u16HTCapInfo " Glen Lee
2015-10-28  7:07 ` [PATCH 71/80] staging: wilc1000: rename u8AmpduParams " Glen Lee
2015-10-28  7:07 ` [PATCH 72/80] staging: wilc1000: rename au8SuppMCsSet " Glen Lee
2015-10-28  7:07 ` [PATCH 73/80] staging: wilc1000: rename u16HTExtParams " Glen Lee
2015-10-28  7:07 ` [PATCH 74/80] staging: wilc1000: rename u32TxBeamformingCap " Glen Lee
2015-10-28  7:07 ` [PATCH 75/80] staging: wilc1000: rename u8ASELCap " Glen Lee
2015-10-28  7:07 ` [PATCH 76/80] staging: wilc1000: rename u16FlagsMask " Glen Lee
2015-10-28  7:07 ` [PATCH 77/80] staging: wilc1000: rename u16FlagsSet " Glen Lee
2015-10-28  7:07 ` [PATCH 78/80] staging: wilc1000: rename pstrHostIFSetChan of fuction Handle_SetChannel Glen Lee
2015-10-28  7:07 ` [PATCH 79/80] staging: wilc1000: rename pstrHostIfSetDrvHandler of fuction Handle_SetWfiDrvHandler Glen Lee
2015-10-28  7:07 ` [PATCH 80/80] staging: wilc1000: rename pstrHostIfSetOperationMode of fuction Handle_SetOperationMode Glen Lee

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.