staging: wilc1000: rename Handle_Scan
authorChaehyun Lim <chaehyun.lim@gmail.com>
Mon, 4 Apr 2016 11:04:46 +0000 (20:04 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Apr 2016 05:00:52 +0000 (22:00 -0700)
This patch renames Handle_Scan to handle_scan to avoid camelcase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index b4f16fec9a54875051df6b4bad5c340ebfb652fb..ff10095f1b074ab0cae18be26d97597585eb4cb3 100644 (file)
@@ -731,7 +731,7 @@ unlock:
        return result;
 }
 
-static s32 Handle_Scan(struct wilc_vif *vif,
+static s32 handle_scan(struct wilc_vif *vif,
                       struct scan_attr *pstrHostIFscanAttr)
 {
        s32 result = 0;
@@ -2515,7 +2515,7 @@ static int hostIFthread(void *pvArg)
 
                switch (msg.id) {
                case HOST_IF_MSG_SCAN:
-                       Handle_Scan(msg.vif, &msg.body.scan_info);
+                       handle_scan(msg.vif, &msg.body.scan_info);
                        break;
 
                case HOST_IF_MSG_CONNECT:
This page took 0.02645 seconds and 5 git commands to generate.