From: Leo Kim Date: Tue, 13 Oct 2015 11:02:11 +0000 (+0900) Subject: staging: wilc1000: rename u32Length of struct rcvd_net_info X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3bffac68bfd76f1e94e0c6efff143ace80f90c0b;p=deliverable%2Flinux.git staging: wilc1000: rename u32Length of struct rcvd_net_info This patch renames u32Length of struct rcvd_net_info to len to avoid CamelCase naming convention. Signed-off-by: Leo Kim Signed-off-by: Tony Cho Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 432b2752702d..392bf085555e 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -4439,7 +4439,7 @@ void NetworkInfoReceived(u8 *pu8Buffer, u32 u32Length) msg.id = HOST_IF_MSG_RCVD_NTWRK_INFO; msg.drv = hif_drv; - msg.body.net_info.u32Length = u32Length; + msg.body.net_info.len = u32Length; msg.body.net_info.buffer = kmalloc(u32Length, GFP_KERNEL); memcpy(msg.body.net_info.buffer, pu8Buffer, u32Length); diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h index 778dbf5caba6..146a60f52cb7 100644 --- a/drivers/staging/wilc1000/host_interface.h +++ b/drivers/staging/wilc1000/host_interface.h @@ -200,7 +200,7 @@ typedef void (*wilc_remain_on_chan_ready)(void *); /*Remain on channel callback */ struct rcvd_net_info { u8 *buffer; - u32 u32Length; + u32 len; }; struct hidden_net_info {