staging: wilc1000: rename pstrHostIfSetOperationMode of fuction Handle_SetOperationMode
authorLeo Kim <leo.kim@atmel.com>
Thu, 29 Oct 2015 03:05:56 +0000 (12:05 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch renames pstrHostIfSetOperationMode of fuction Handle_SetOperationMode
to hif_op_mode 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

index 96c6d4a96024a4eabb575bd23da725749460a438..17826f3d4407d8a63d58d80f6a6cad8091983365 100644 (file)
@@ -373,20 +373,20 @@ static s32 Handle_SetWfiDrvHandler(struct host_if_drv *hif_drv,
 }
 
 static s32 Handle_SetOperationMode(struct host_if_drv *hif_drv,
-                                  struct op_mode *pstrHostIfSetOperationMode)
+                                   struct op_mode *hif_op_mode)
 {
        s32 result = 0;
        struct wid wid;
 
        wid.id = (u16)WID_SET_OPERATION_MODE;
        wid.type = WID_INT;
-       wid.val = (s8 *)&pstrHostIfSetOperationMode->mode;
+       wid.val = (s8 *)&hif_op_mode->mode;
        wid.size = sizeof(u32);
 
        result = send_config_pkt(SET_CFG, &wid, 1,
                                 get_id_from_handler(hif_drv));
 
-       if ((pstrHostIfSetOperationMode->mode) == IDLE_MODE)
+       if ((hif_op_mode->mode) == IDLE_MODE)
                up(&hif_sema_driver);
 
        if (result) {
This page took 0.028074 seconds and 5 git commands to generate.