]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: rename u8MacAddress of struct set_mac_addr
authorLeo Kim <leo.kim@atmel.com>
Wed, 28 Oct 2015 06:59:31 +0000 (15:59 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Oct 2015 23:18:29 +0000 (08:18 +0900)
This patch renames u8MacAddress of struct set_mac_addr to mac_addr
to avoid CamelCase naming convention.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c
drivers/staging/wilc1000/host_interface.h

index f693ea38c8f1f284959ea0134b8fd1dc5fbb1483..2d12672e7c18dcdade4e7fb3ae9e7291741aba25 100644 (file)
@@ -476,7 +476,7 @@ static s32 Handle_SetMacAddress(struct host_if_drv *hif_drv,
                PRINT_ER("No buffer to send mac address\n");
                return -EFAULT;
        }
-       memcpy(mac_buf, pstrHostIfSetMacAddress->u8MacAddress, ETH_ALEN);
+       memcpy(mac_buf, pstrHostIfSetMacAddress->mac_addr, ETH_ALEN);
 
        wid.id = (u16)WID_MAC_ADDR;
        wid.type = WID_STR;
@@ -3399,7 +3399,7 @@ s32 host_int_set_MacAddress(struct host_if_drv *hif_drv, u8 *pu8MacAddress)
 
        memset(&msg, 0, sizeof(struct host_if_msg));
        msg.id = HOST_IF_MSG_SET_MAC_ADDRESS;
-       memcpy(msg.body.set_mac_info.u8MacAddress, pu8MacAddress, ETH_ALEN);
+       memcpy(msg.body.set_mac_info.mac_addr, pu8MacAddress, ETH_ALEN);
        msg.drv = hif_drv;
 
        result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
index e040c7e011a0acde298a6ca8647b0b57774face6..c2f21a96995ac43b1b9d3d9b3bf41f9981575baf 100644 (file)
@@ -248,7 +248,7 @@ struct op_mode {
 };
 
 struct set_mac_addr {
-       u8 u8MacAddress[ETH_ALEN];
+       u8 mac_addr[ETH_ALEN];
 };
 
 struct get_mac_addr {