mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 01:36:52 +09:00
staging: unisys: fix CamelCase in findbus()
Fix the CamelCase parameter name in findbus() in visorchipset.h. busNo => bus_no Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
33192fa1d1
commit
b4d55e39a3
@@ -147,12 +147,12 @@ 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;
|
||||
|
||||
list_for_each_entry(p, list, entry) {
|
||||
if (p->bus_no == busNo)
|
||||
if (p->bus_no == bus_no)
|
||||
return p;
|
||||
}
|
||||
return NULL;
|
||||
|
||||
Reference in New Issue
Block a user