mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 09:01:36 -04:00
staging: unisys: fix some debugfs output
When we removed the ERRDEV() macro we made a small mistake so now it
doesn't print the "Virtual PCI devices" section header.
Fixes: 0aca78449b ('staging: unisys: remove ERRDEV macros')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
549fb6e399
commit
bdbceb4de3
@@ -1289,8 +1289,8 @@ static ssize_t info_debugfs_read(struct file *file, char __user *buf,
|
||||
printparam.str_pos = &str_pos;
|
||||
printparam.buf = vbuf;
|
||||
printparam.len = &len;
|
||||
if (bus_for_each_dev(&virtpci_bus_type, NULL,
|
||||
(void *)&printparam, print_vbus))
|
||||
bus_for_each_dev(&virtpci_bus_type, NULL, (void *)&printparam,
|
||||
print_vbus);
|
||||
|
||||
str_pos += scnprintf(vbuf + str_pos, len - str_pos,
|
||||
"\n Virtual PCI devices\n");
|
||||
|
||||
Reference in New Issue
Block a user