staging: unisys: fix CamelCase in ReqHandlerDel
authorBenjamin Romer <benjamin.romer@unisys.com>
Fri, 3 Oct 2014 18:08:54 +0000 (14:08 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 Oct 2014 02:29:04 +0000 (10:29 +0800)
Fix CamelCase names:
ReqHandlerDel => req_handler_del
switchTypeGuid => switch_uuid

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/include/uisutils.h
drivers/staging/unisys/uislib/uisutils.c

index 65ded5eeab2657cd4256536a4d0164e219997a6c..ba71a471ecdf52c3e7934584ecf0438c43c05e61 100644 (file)
@@ -75,7 +75,7 @@ struct req_handler_info *req_handler_add(uuid_le switch_uuid,
                                                unsigned char *client_str,
                                                u32 client_str_len, u64 bytes));
 struct req_handler_info *req_handler_find(uuid_le switch_uuid);
-int ReqHandlerDel(uuid_le switchTypeGuid);
+int req_handler_del(uuid_le switch_uuid);
 
 #define uislib_ioremap_cache(addr, size) \
        dbg_ioremap_cache(addr, size, __FILE__, __LINE__)
index b62b680f23c573eb6bf81c454c2c61c35ae0b00f..5231c19bb74a4be5bb8abc4ea6269f42cb01b18e 100644 (file)
@@ -165,7 +165,7 @@ uisctrl_unregister_req_handler_ex(uuid_le switchTypeGuid)
        int rc = 0;             /* assume failure */
 
        LOGINF("type=%pUL.\n", &switchTypeGuid);
-       if (ReqHandlerDel(switchTypeGuid) < 0) {
+       if (req_handler_del(switchTypeGuid) < 0) {
                LOGERR("failed to remove %pUL from server list\n",
                                &switchTypeGuid);
                goto Away;
@@ -326,7 +326,7 @@ req_handler_find(uuid_le switch_uuid)
 }
 
 int
-ReqHandlerDel(uuid_le switchTypeGuid)
+req_handler_del(uuid_le switch_uuid)
 {
        struct list_head *lelt, *tmp;
        struct req_handler_info *entry = NULL;
@@ -335,7 +335,7 @@ ReqHandlerDel(uuid_le switchTypeGuid)
        spin_lock(&ReqHandlerInfo_list_lock);
        list_for_each_safe(lelt, tmp, &ReqHandlerInfo_list) {
                entry = list_entry(lelt, struct req_handler_info, list_link);
-               if (uuid_le_cmp(entry->switch_uuid, switchTypeGuid) == 0) {
+               if (uuid_le_cmp(entry->switch_uuid, switch_uuid) == 0) {
                        list_del(lelt);
                        kfree(entry);
                        rc++;