OSDN Git Service

staging: wilc1000: rename u32Length of struct rcvd_net_info
authorLeo Kim <leo.kim@atmel.com>
Tue, 13 Oct 2015 11:02:11 +0000 (20:02 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 Oct 2015 17:01:53 +0000 (10:01 -0700)
This patch renames u32Length of struct rcvd_net_info to len 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>
drivers/staging/wilc1000/host_interface.c
drivers/staging/wilc1000/host_interface.h

index 432b275..392bf08 100644 (file)
@@ -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);
 
index 778dbf5..146a60f 100644 (file)
@@ -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 {