]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: rename u32Address of struct drv_handler
authorLeo Kim <leo.kim@atmel.com>
Wed, 28 Oct 2015 06:59:29 +0000 (15:59 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Oct 2015 23:18:29 +0000 (08:18 +0900)
This patch renames u32Address of struct drv_handler to handler
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 eee53b92e60341277a9589abff482a55b5a74e69..a1116ef37838a6a0e5f8525f88de74ae5dd97c63 100644 (file)
@@ -356,11 +356,11 @@ static s32 Handle_SetWfiDrvHandler(struct host_if_drv *hif_drv,
 
        wid.id = (u16)WID_SET_DRV_HANDLER;
        wid.type = WID_INT;
-       wid.val = (s8 *)&pstrHostIfSetDrvHandler->u32Address;
+       wid.val = (s8 *)&pstrHostIfSetDrvHandler->handler;
        wid.size = sizeof(u32);
 
        result = send_config_pkt(SET_CFG, &wid, 1,
-                                pstrHostIfSetDrvHandler->u32Address);
+                                pstrHostIfSetDrvHandler->handler);
 
        if (!hif_drv)
                up(&hif_sema_driver);
@@ -3681,7 +3681,7 @@ int host_int_set_wfi_drv_handler(struct host_if_drv *hif_drv)
 
        memset(&msg, 0, sizeof(struct host_if_msg));
        msg.id = HOST_IF_MSG_SET_WFIDRV_HANDLER;
-       msg.body.drv.u32Address = get_id_from_handler(hif_drv);
+       msg.body.drv.handler = get_id_from_handler(hif_drv);
        msg.drv = hif_drv;
 
        result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
index d4fb1d4be1fda51bcea414afbc0cac35f4bf2f9b..eb7b7d9e3e1485272a18729cc94b2bd3ef31d99b 100644 (file)
@@ -240,7 +240,7 @@ struct user_conn_req {
 };
 
 struct drv_handler {
-       u32 u32Address;
+       u32 handler;
 };
 
 struct op_mode {