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

staging: unisys: fix CamelCase-named clearing functions

Fix the CamelCase-named structure clearing functions in
visorchipset_main.c:

busInfo_clear => bus_info_clear
devInfo_clear => dev_info_clear

Update references to use the fixed names.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1527e938
...@@ -499,7 +499,7 @@ static ssize_t remaining_steps_store(struct device *dev, ...@@ -499,7 +499,7 @@ static ssize_t remaining_steps_store(struct device *dev,
} }
static void static void
busInfo_clear(void *v) bus_info_clear(void *v)
{ {
struct visorchipset_bus_info *p = (struct visorchipset_bus_info *) (v); struct visorchipset_bus_info *p = (struct visorchipset_bus_info *) (v);
...@@ -518,7 +518,7 @@ busInfo_clear(void *v) ...@@ -518,7 +518,7 @@ busInfo_clear(void *v)
} }
static void static void
devInfo_clear(void *v) dev_info_clear(void *v)
{ {
struct visorchipset_device_info *p = struct visorchipset_device_info *p =
(struct visorchipset_device_info *)(v); (struct visorchipset_device_info *)(v);
...@@ -603,13 +603,13 @@ cleanup_controlvm_structures(void) ...@@ -603,13 +603,13 @@ cleanup_controlvm_structures(void)
struct visorchipset_device_info *di, *tmp_di; struct visorchipset_device_info *di, *tmp_di;
list_for_each_entry_safe(bi, tmp_bi, &bus_info_list, entry) { list_for_each_entry_safe(bi, tmp_bi, &bus_info_list, entry) {
busInfo_clear(bi); bus_info_clear(bi);
list_del(&bi->entry); list_del(&bi->entry);
kfree(bi); kfree(bi);
} }
list_for_each_entry_safe(di, tmp_di, &dev_info_list, entry) { list_for_each_entry_safe(di, tmp_di, &dev_info_list, entry) {
devInfo_clear(di); dev_info_clear(di);
list_del(&di->entry); list_del(&di->entry);
kfree(di); kfree(di);
} }
...@@ -800,7 +800,7 @@ bus_responder(enum controlvm_id cmdId, ulong busNo, int response) ...@@ -800,7 +800,7 @@ bus_responder(enum controlvm_id cmdId, ulong busNo, int response)
controlvm_respond(&p->pending_msg_hdr, response); controlvm_respond(&p->pending_msg_hdr, response);
p->pending_msg_hdr.id = CONTROLVM_INVALID; p->pending_msg_hdr.id = CONTROLVM_INVALID;
if (need_clear) { if (need_clear) {
busInfo_clear(p); bus_info_clear(p);
delbusdevices(&dev_info_list, busNo); delbusdevices(&dev_info_list, busNo);
} }
} }
...@@ -860,7 +860,7 @@ device_responder(enum controlvm_id cmdId, ulong busNo, ulong devNo, ...@@ -860,7 +860,7 @@ device_responder(enum controlvm_id cmdId, ulong busNo, ulong devNo,
controlvm_respond(&p->pending_msg_hdr, response); controlvm_respond(&p->pending_msg_hdr, response);
p->pending_msg_hdr.id = CONTROLVM_INVALID; p->pending_msg_hdr.id = CONTROLVM_INVALID;
if (need_clear) if (need_clear)
devInfo_clear(p); dev_info_clear(p);
} }
static void static void
......
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