All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 46/54] staging: wilc1000: rename bIsEnabled of struct set_multicast
@ 2015-10-13 11:02 Tony Cho
  2015-10-13 11:02 ` [PATCH 47/54] staging: wilc1000: rename u32count " Tony Cho
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Tony Cho @ 2015-10-13 11:02 UTC (permalink / raw)
  To: gregkh
  Cc: devel, linux-wireless, johnny.kim, chris.park, rachel.kim,
	tony.cho, glen.lee, leo.kim, austin.shin, adel.noureldin,
	adham.abozaeid, Nicolas.FERRE

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

This patch renames bIsEnabled of struct set_multicast to enabled to
avoid CamelCase naming convention.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
---
 drivers/staging/wilc1000/host_interface.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 42f59fa..7ea9e01 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -140,7 +140,7 @@ struct beacon_attr {
 };
 
 struct set_multicast {
-	bool bIsEnabled;
+	bool enabled;
 	u32 u32count;
 };
 
@@ -2796,10 +2796,10 @@ static void Handle_SetMulticastFilter(struct host_if_drv *hif_drv,
 		goto ERRORHANDLER;
 
 	pu8CurrByte = strWID.val;
-	*pu8CurrByte++ = (strHostIfSetMulti->bIsEnabled & 0xFF);
-	*pu8CurrByte++ = ((strHostIfSetMulti->bIsEnabled >> 8) & 0xFF);
-	*pu8CurrByte++ = ((strHostIfSetMulti->bIsEnabled >> 16) & 0xFF);
-	*pu8CurrByte++ = ((strHostIfSetMulti->bIsEnabled >> 24) & 0xFF);
+	*pu8CurrByte++ = (strHostIfSetMulti->enabled & 0xFF);
+	*pu8CurrByte++ = ((strHostIfSetMulti->enabled >> 8) & 0xFF);
+	*pu8CurrByte++ = ((strHostIfSetMulti->enabled >> 16) & 0xFF);
+	*pu8CurrByte++ = ((strHostIfSetMulti->enabled >> 24) & 0xFF);
 
 	*pu8CurrByte++ = (strHostIfSetMulti->u32count & 0xFF);
 	*pu8CurrByte++ = ((strHostIfSetMulti->u32count >> 8) & 0xFF);
@@ -4912,7 +4912,7 @@ s32 host_int_setup_multicast_filter(struct host_if_drv *hif_drv,
 	msg.id = HOST_IF_MSG_SET_MULTICAST_FILTER;
 	msg.drv = hif_drv;
 
-	pstrMulticastFilterParam->bIsEnabled = bIsEnabled;
+	pstrMulticastFilterParam->enabled = bIsEnabled;
 	pstrMulticastFilterParam->u32count = u32count;
 
 	s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
-- 
1.9.1


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

end of thread, other threads:[~2015-10-14  5:26 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-13 11:02 [PATCH 46/54] staging: wilc1000: rename bIsEnabled of struct set_multicast Tony Cho
2015-10-13 11:02 ` [PATCH 47/54] staging: wilc1000: rename u32count " Tony Cho
2015-10-13 11:02 ` [PATCH 48/54] staging: wilc1000: rename au8MacAddr of struct del_sta Tony Cho
2015-10-13 11:02 ` [PATCH 49/54] staging: wilc1000: rename bIsEnabled of struct power_mgmt_param Tony Cho
2015-10-13 11:02 ` [PATCH 50/54] staging: wilc1000: rename u32Timeout " Tony Cho
2015-10-13 11:02 ` [PATCH 51/54] staging: wilc1000: rename au8IPAddr of struct set_ip_addr Tony Cho
2015-10-13 11:02 ` [PATCH 52/54] staging: wilc1000: rename pu8Buffer of struct rcvd_net_info Tony Cho
2015-10-13 11:02 ` [PATCH 53/54] staging: wilc1000: rename u32Length " Tony Cho
2015-10-13 11:02 ` [PATCH 54/54] staging: wilc1000: wilc_msgqueue.c : remove the goto ERRORHANDER Tony Cho
2015-10-13 14:08   ` Mike Rapoport
2015-10-14  5:26     ` Tony Cho

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.