Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/isa/isa_common.c 62059 2000-06-25 09:19:02Z dfr $
---
> * $FreeBSD: head/sys/isa/isa_common.c 62987 2000-07-12 00:42:08Z jhb $
78a79,80
> static int isa_print_child(device_t bus, device_t dev);
>
414,418c416,419
< if (device_get_desc(child))
< device_printf(child, "<%s> can't assign resources\n",
< device_get_desc(child));
< else
< device_printf(child, "can't assign resources\n");
---
> bus_print_child_header(device_get_parent(child), child);
> printf(" can't assign resources\n");
> if (bootverbose)
> isa_print_child(device_get_parent(child), child);
608,610c609,611
< device_printf(dev, "<%s> found",
< pnp_eisaformat(isa_get_logicalid(child)));
< if (bootverbose)
---
> if (bootverbose) {
> bus_print_child_header(dev, child);
> printf(" failed to probe");
612c613,614
< printf("\n");
---
> bus_print_child_footer(dev, child);
> }