staging: unisys: fix CamelCase parameters in delbusdevices()
Fix the CamelCase parameter in delbusdevices() 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
0a96ec728e
commit
8f67b5bc06
@ -104,12 +104,12 @@ static inline struct visorchipset_device_info *finddevice(
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline void delbusdevices(struct list_head *list, u32 busNo)
|
||||
static inline void delbusdevices(struct list_head *list, u32 bus_no)
|
||||
{
|
||||
struct visorchipset_device_info *p, *tmp;
|
||||
|
||||
list_for_each_entry_safe(p, tmp, list, entry) {
|
||||
if (p->bus_no == busNo) {
|
||||
if (p->bus_no == bus_no) {
|
||||
list_del(&p->entry);
|
||||
kfree(p);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user