提交 8f67b5bc 编写于 作者: B Benjamin Romer 提交者: Greg Kroah-Hartman

staging: unisys: fix CamelCase parameters in delbusdevices()

Fix the CamelCase parameter in delbusdevices() in visorchipset.h:

busNo => bus_no
Signed-off-by: NBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 0a96ec72
无相关合并请求
......@@ -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);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册