OSDN Git Service

staging: wilc1000: rename u32Length of struct rcvd_async_info
authorLeo Kim <leo.kim@atmel.com>
Tue, 13 Oct 2015 10:50:01 +0000 (19:50 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 Oct 2015 16:55:08 +0000 (09:55 -0700)
This patch renames u32Length of struct rcvd_async_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

index 7a91010..3d0796f 100644 (file)
@@ -123,7 +123,7 @@ struct connect_attr {
 
 struct rcvd_async_info {
        u8 *buffer;
-       u32 u32Length;
+       u32 len;
 };
 
 struct channel_attr {
@@ -4482,8 +4482,7 @@ void GnrlAsyncInfoReceived(u8 *pu8Buffer, u32 u32Length)
        msg.id = HOST_IF_MSG_RCVD_GNRL_ASYNC_INFO;
        msg.drv = hif_drv;
 
-
-       msg.body.async_info.u32Length = u32Length;
+       msg.body.async_info.len = u32Length;
        msg.body.async_info.buffer = kmalloc(u32Length, GFP_KERNEL);
        memcpy(msg.body.async_info.buffer, pu8Buffer, u32Length);