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

staging: unisys: fix CamelCase in findbus()

Fix the CamelCase parameter name in findbus() in visorchipset.h.

busNo => bus_no
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 33192fa1
...@@ -147,12 +147,12 @@ struct visorchipset_bus_info { ...@@ -147,12 +147,12 @@ struct visorchipset_bus_info {
}; };
static inline struct visorchipset_bus_info * static inline struct visorchipset_bus_info *
findbus(struct list_head *list, u32 busNo) findbus(struct list_head *list, u32 bus_no)
{ {
struct visorchipset_bus_info *p; struct visorchipset_bus_info *p;
list_for_each_entry(p, list, entry) { list_for_each_entry(p, list, entry) {
if (p->bus_no == busNo) if (p->bus_no == bus_no)
return p; return p;
} }
return NULL; return NULL;
......
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