]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: unisys: refactor req_handler_add()
authorBenjamin Romer <benjamin.romer@unisys.com>
Fri, 5 Dec 2014 22:09:15 +0000 (17:09 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 10 Jan 2015 01:32:34 +0000 (17:32 -0800)
Fix the CamelCase parameter names:

Server_Channel_Ok => server_channel_ok
Server_Channel_Init => server_channel_init
clientStr => clientstr
clientStrLen => clientstr_len

And remove the extra parenthesis in the list_add_tail() call at the end.

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

index 4f89b2ca05fa469d63a65a266ec4449ad36b28f7..d9f527dfb4b81c0f1f28682886f17a6decdcf51c 100644 (file)
@@ -269,9 +269,10 @@ req_handler_add(uuid_le switch_uuid,
              const char *switch_type_name,
              int (*controlfunc)(struct io_msgs *),
              unsigned long min_channel_bytes,
-             int (*Server_Channel_Ok)(unsigned long channelBytes),
-             int (*Server_Channel_Init)
-              (void *x, unsigned char *clientStr, u32 clientStrLen, u64 bytes))
+             int (*server_channel_ok)(unsigned long channel_bytes),
+             int (*server_channel_init)
+              (void *x, unsigned char *clientstr, u32 clientstr_len,
+               u64 bytes))
 {
        struct req_handler_info *rc = NULL;
 
@@ -281,13 +282,13 @@ req_handler_add(uuid_le switch_uuid,
        rc->switch_uuid = switch_uuid;
        rc->controlfunc = controlfunc;
        rc->min_channel_bytes = min_channel_bytes;
-       rc->server_channel_ok = Server_Channel_Ok;
-       rc->server_channel_init = Server_Channel_Init;
+       rc->server_channel_ok = server_channel_ok;
+       rc->server_channel_init = server_channel_init;
        if (switch_type_name)
                strncpy(rc->switch_type_name, switch_type_name,
                        sizeof(rc->switch_type_name) - 1);
        spin_lock(&req_handler_info_list_lock);
-       list_add_tail(&(rc->list_link), &req_handler_info_list);
+       list_add_tail(&rc->list_link, &req_handler_info_list);
        spin_unlock(&req_handler_info_list_lock);
 
        return rc;