]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: rename Handle_SetOperationMode function
authorLeo Kim <leo.kim@atmel.com>
Fri, 6 Nov 2015 02:20:05 +0000 (11:20 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch renames Handle_SetOperationMode function to handle_set_operation_mode
to avoid camelcase.

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 dcaf0eb782ac65bfff0280ef31a8332a82c25584..504763e07456dc37bcca4f09e89db800113396fb 100644 (file)
@@ -371,8 +371,8 @@ static s32 handle_set_wfi_drv_handler(struct host_if_drv *hif_drv,
        return result;
 }
 
-static s32 Handle_SetOperationMode(struct host_if_drv *hif_drv,
-                                   struct op_mode *hif_op_mode)
+static s32 handle_set_operation_mode(struct host_if_drv *hif_drv,
+                                    struct op_mode *hif_op_mode)
 {
        s32 result = 0;
        struct wid wid;
@@ -2974,7 +2974,7 @@ static int hostIFthread(void *pvArg)
                        break;
 
                case HOST_IF_MSG_SET_OPERATION_MODE:
-                       Handle_SetOperationMode(msg.drv, &msg.body.mode);
+                       handle_set_operation_mode(msg.drv, &msg.body.mode);
                        break;
 
                case HOST_IF_MSG_SET_IPADDRESS: