Deleted Added
full compact
26c26
< * $Id: atkbdc_isa.c,v 1.8 1999/05/30 11:12:27 dfr Exp $
---
> * $Id: atkbdc_isa.c,v 1.9 1999/06/29 17:35:09 yokota Exp $
62c62
< static void atkbdc_print_child(device_t bus, device_t dev);
---
> static int atkbdc_print_child(device_t bus, device_t dev);
204c204
< static void
---
> static int
207a208
> int retval = 0;
210a212
> retval += bus_print_child_header(bus, dev);
212c214
< printf(" flags 0x%x", kbdcdev->flags);
---
> retval += printf(" flags 0x%x", kbdcdev->flags);
214c216,217
< printf(" irq %d", kbdcdev->irq);
---
> retval += printf(" irq %d", kbdcdev->irq);
> retval += bus_print_child_footer(bus, dev);
216c219
< printf(" on %s%d", device_get_name(bus), device_get_unit(bus));
---
> return (retval);