Commit 3636c0da authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman
Browse files

staging: unisys: fix CamelCase names in ReqHandlerAdd()



Fix CamelCase names:
ReqHandlerAdd => req_handler_add
Server_Channel_Ok => svr_channel_ok
channelBytes => channel_bytes
Server_Channel_Init => svr_channel_init
clientStr => client_str
ClientStrLen => client_str_len

Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 157764e7
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -65,15 +65,15 @@ struct req_handler_info {
	struct list_head list_link;	/* links into ReqHandlerInfo_list */
};

struct req_handler_info *ReqHandlerAdd(uuid_le switchTypeGuid,
struct req_handler_info *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 (*svr_channel_ok)(unsigned long
							 channel_bytes),
				int (*svr_channel_init)(void *x,
						unsigned char *client_str,
						u32 client_str_len, u64 bytes));
struct req_handler_info *ReqHandlerFind(uuid_le switchTypeGuid);
int ReqHandlerDel(uuid_le switchTypeGuid);

@@ -119,9 +119,9 @@ int uisctrl_register_req_handler_ex(uuid_le switchTypeGuid,
				    const char *switch_type_name,
				    int (*fptr)(struct io_msgs *),
				    unsigned long min_channel_bytes,
				    int (*Server_Channel_Ok)(unsigned long
				    int (*svr_channel_ok)(unsigned long
							     channelBytes),
				    int (*Server_Channel_Init)
				    int (*svr_channel_init)
				    (void *x, unsigned char *clientStr,
				     u32 clientStrLen, u64 bytes),
				    ULTRA_VBUS_DEVICEINFO *chipset_DriverInfo);
+3 −3
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ uisctrl_register_req_handler_ex(uuid_le switchTypeGuid,
				&switchTypeGuid);
		goto Away;
	}
	pReqHandlerInfo = ReqHandlerAdd(switchTypeGuid,
	pReqHandlerInfo = req_handler_add(switchTypeGuid,
					switch_type_name,
					controlfunc,
					min_channel_bytes,
@@ -279,7 +279,7 @@ static LIST_HEAD(ReqHandlerInfo_list); /* list of struct req_handler_info */
static DEFINE_SPINLOCK(ReqHandlerInfo_list_lock);

struct req_handler_info *
ReqHandlerAdd(uuid_le switchTypeGuid,
req_handler_add(uuid_le switch_uuid,
	      const char *switch_type_name,
	      int (*controlfunc)(struct io_msgs *),
	      unsigned long min_channel_bytes,
@@ -292,7 +292,7 @@ ReqHandlerAdd(uuid_le switchTypeGuid,
	rc = kzalloc(sizeof(*rc), GFP_ATOMIC);
	if (!rc)
		return NULL;
	rc->switch_uuid = switchTypeGuid;
	rc->switch_uuid = switch_uuid;
	rc->controlfunc = controlfunc;
	rc->min_channel_bytes = min_channel_bytes;
	rc->server_channel_ok = Server_Channel_Ok;