aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2004-10-13 07:29:29 +0000
committerNate Lawson <njl@FreeBSD.org>2004-10-13 07:29:29 +0000
commit2c8d3b23ed9bc223ded922187368939e73d257e4 (patch)
treeb0244e10fe475f316350dc77975e5dde3abed3a1 /sys/dev
parenta91c5fa830c88beb7d2adb60e0905d4ce80ea452 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/acpica/acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c
index 0823d29cb067c..2bdeaf66f1d9f 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -617,9 +617,9 @@ acpi_print_child(device_t bus, device_t child)
retval += resource_list_print_type(rl, "iomem", SYS_RES_MEMORY, "%#lx");
retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%ld");
retval += resource_list_print_type(rl, "drq", SYS_RES_DRQ, "%ld");
- retval += bus_print_child_footer(bus, child);
if (device_get_flags(child))
retval += printf(" flags %#x", device_get_flags(child));
+ retval += bus_print_child_footer(bus, child);
return (retval);
}