Deleted Added
full compact
26c26
< * $Id: pcf.c,v 1.8 1999/05/06 18:54:18 peter Exp $
---
> * $Id: pcf.c,v 1.9 1999/05/08 21:59:27 dfr Exp $
106c106
< static void pcf_print_child(device_t, device_t);
---
> static int pcf_print_child(device_t, device_t);
222c222
< static void
---
> static int
225a226
> int retval = 0;
227,228c228,230
< printf(" on %s%d addr 0x%x", device_get_name(bus),
< device_get_unit(bus), (int)pcf->pcf_addr);
---
> retval += bus_print_child_header(bus, dev);
> retval += printf(" on %s addr 0x%x\n", device_get_nameunit(bus),
> (int)pcf->pcf_addr);
230c232
< return;
---
> return (retval);