staging: unisys: fix CamelCase in ReqHandlerFind()
Fix CamelCase names: ReqHandlerFind => req_handler_find switchTypeGuid => switch_uuid Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3636c0da3d
commit
ea2cfd6531
@ -74,7 +74,7 @@ struct req_handler_info *req_handler_add(uuid_le switch_uuid,
|
||||
int (*svr_channel_init)(void *x,
|
||||
unsigned char *client_str,
|
||||
u32 client_str_len, u64 bytes));
|
||||
struct req_handler_info *ReqHandlerFind(uuid_le switchTypeGuid);
|
||||
struct req_handler_info *req_handler_find(uuid_le switch_uuid);
|
||||
int ReqHandlerDel(uuid_le switchTypeGuid);
|
||||
|
||||
#define uislib_ioremap_cache(addr, size) \
|
||||
|
@ -379,7 +379,7 @@ create_device(CONTROLVM_MESSAGE *msg, char *buf)
|
||||
if (msg->hdr.Flags.testMessage)
|
||||
dev->chanptr = (void __iomem *)__va(dev->channel_addr);
|
||||
else {
|
||||
pReqHandler = ReqHandlerFind(dev->channel_uuid);
|
||||
pReqHandler = req_handler_find(dev->channel_uuid);
|
||||
if (pReqHandler)
|
||||
/* generic service handler registered for this
|
||||
* channel
|
||||
|
@ -308,7 +308,7 @@ req_handler_add(uuid_le switch_uuid,
|
||||
}
|
||||
|
||||
struct req_handler_info *
|
||||
ReqHandlerFind(uuid_le switchTypeGuid)
|
||||
req_handler_find(uuid_le switch_uuid)
|
||||
{
|
||||
struct list_head *lelt, *tmp;
|
||||
struct req_handler_info *entry = NULL;
|
||||
@ -316,7 +316,7 @@ ReqHandlerFind(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) {
|
||||
spin_unlock(&ReqHandlerInfo_list_lock);
|
||||
return entry;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user