Commit be080dc1 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: refactor req_handler_add()

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: default avatarKen Depro <kenneth.depro@unisys.com>
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bd702910
...@@ -269,9 +269,10 @@ req_handler_add(uuid_le switch_uuid, ...@@ -269,9 +269,10 @@ req_handler_add(uuid_le switch_uuid,
const char *switch_type_name, const char *switch_type_name,
int (*controlfunc)(struct io_msgs *), int (*controlfunc)(struct io_msgs *),
unsigned long min_channel_bytes, unsigned long min_channel_bytes,
int (*Server_Channel_Ok)(unsigned long channelBytes), int (*server_channel_ok)(unsigned long channel_bytes),
int (*Server_Channel_Init) int (*server_channel_init)
(void *x, unsigned char *clientStr, u32 clientStrLen, u64 bytes)) (void *x, unsigned char *clientstr, u32 clientstr_len,
u64 bytes))
{ {
struct req_handler_info *rc = NULL; struct req_handler_info *rc = NULL;
...@@ -281,13 +282,13 @@ req_handler_add(uuid_le switch_uuid, ...@@ -281,13 +282,13 @@ req_handler_add(uuid_le switch_uuid,
rc->switch_uuid = switch_uuid; rc->switch_uuid = switch_uuid;
rc->controlfunc = controlfunc; rc->controlfunc = controlfunc;
rc->min_channel_bytes = min_channel_bytes; rc->min_channel_bytes = min_channel_bytes;
rc->server_channel_ok = Server_Channel_Ok; rc->server_channel_ok = server_channel_ok;
rc->server_channel_init = Server_Channel_Init; rc->server_channel_init = server_channel_init;
if (switch_type_name) if (switch_type_name)
strncpy(rc->switch_type_name, switch_type_name, strncpy(rc->switch_type_name, switch_type_name,
sizeof(rc->switch_type_name) - 1); sizeof(rc->switch_type_name) - 1);
spin_lock(&req_handler_info_list_lock); 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); spin_unlock(&req_handler_info_list_lock);
return rc; return rc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment