From: Leo Kim <leo.kim@atmel.com>
Date: Tue, 13 Oct 2015 10:50:06 +0000 (+0900)
Subject: staging: wilc1000: rename pu8Head of struct beacon_attr
X-Git-Tag: firefly_0821_release~176^2~802^2~760
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8ce528b9a8325cf2b8664ef9ac73eb7ff26a4ca0;p=firefly-linux-kernel-4.4.55.git

staging: wilc1000: rename pu8Head of struct beacon_attr

This patch renames pu8Head of struct beacon_attr to head to
avoid CamelCase naming convention.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---

diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 70ba13fe8d9e..dd07e1167472 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -134,7 +134,7 @@ struct beacon_attr {
 	u32 interval;
 	u32 dtim_period;
 	u32 head_len;
-	u8 *pu8Head;
+	u8 *head;
 	u32 u32TailLen;
 	u8 *pu8Tail;
 };
@@ -2359,7 +2359,7 @@ static void Handle_AddBeacon(struct host_if_drv *hif_drv,
 	*pu8CurrByte++ = ((pstrSetBeaconParam->head_len >> 16) & 0xFF);
 	*pu8CurrByte++ = ((pstrSetBeaconParam->head_len >> 24) & 0xFF);
 
-	memcpy(pu8CurrByte, pstrSetBeaconParam->pu8Head, pstrSetBeaconParam->head_len);
+	memcpy(pu8CurrByte, pstrSetBeaconParam->head, pstrSetBeaconParam->head_len);
 	pu8CurrByte += pstrSetBeaconParam->head_len;
 
 	*pu8CurrByte++ = (pstrSetBeaconParam->u32TailLen & 0xFF);
@@ -2378,7 +2378,7 @@ static void Handle_AddBeacon(struct host_if_drv *hif_drv,
 
 ERRORHANDLER:
 	kfree(strWID.val);
-	kfree(pstrSetBeaconParam->pu8Head);
+	kfree(pstrSetBeaconParam->head);
 	kfree(pstrSetBeaconParam->pu8Tail);
 }
 
@@ -4644,12 +4644,12 @@ s32 host_int_add_beacon(struct host_if_drv *hif_drv, u32 u32Interval,
 	pstrSetBeaconParam->interval = u32Interval;
 	pstrSetBeaconParam->dtim_period = u32DTIMPeriod;
 	pstrSetBeaconParam->head_len = u32HeadLen;
-	pstrSetBeaconParam->pu8Head = kmalloc(u32HeadLen, GFP_KERNEL);
-	if (pstrSetBeaconParam->pu8Head == NULL) {
+	pstrSetBeaconParam->head = kmalloc(u32HeadLen, GFP_KERNEL);
+	if (pstrSetBeaconParam->head == NULL) {
 		s32Error = -ENOMEM;
 		goto ERRORHANDLER;
 	}
-	memcpy(pstrSetBeaconParam->pu8Head, pu8Head, u32HeadLen);
+	memcpy(pstrSetBeaconParam->head, pu8Head, u32HeadLen);
 	pstrSetBeaconParam->u32TailLen = u32TailLen;
 
 	if (u32TailLen > 0) {
@@ -4669,8 +4669,8 @@ s32 host_int_add_beacon(struct host_if_drv *hif_drv, u32 u32Interval,
 
 ERRORHANDLER:
 	if (s32Error) {
-		if (pstrSetBeaconParam->pu8Head != NULL)
-			kfree(pstrSetBeaconParam->pu8Head);
+		if (pstrSetBeaconParam->head != NULL)
+			kfree(pstrSetBeaconParam->head);
 
 		if (pstrSetBeaconParam->pu8Tail != NULL)
 			kfree(pstrSetBeaconParam->pu8Tail);