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:
parent
33192fa1d1
commit
b4d55e39a3
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue