diff options
| author | Matthew N. Dodd <mdodd@FreeBSD.org> | 1999-07-29 01:03:04 +0000 |
|---|---|---|
| committer | Matthew N. Dodd <mdodd@FreeBSD.org> | 1999-07-29 01:03:04 +0000 |
| commit | 15317dd875420f6e8953f95fa7de214465187dda (patch) | |
| tree | 4895cb91c66163742479e4442fcd330fed36fc9b /sys/dev/atkbdc/atkbdc_isa.c | |
| parent | 7558f6aad9132f231a62b6bf2bb57f082dc0a57d (diff) | |
Notes
Diffstat (limited to 'sys/dev/atkbdc/atkbdc_isa.c')
| -rw-r--r-- | sys/dev/atkbdc/atkbdc_isa.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sys/dev/atkbdc/atkbdc_isa.c b/sys/dev/atkbdc/atkbdc_isa.c index 0c57bc3da565..387f9a534153 100644 --- a/sys/dev/atkbdc/atkbdc_isa.c +++ b/sys/dev/atkbdc/atkbdc_isa.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $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 $ */ #include "atkbdc.h" @@ -59,7 +59,7 @@ devclass_t atkbdc_devclass; static int atkbdc_probe(device_t dev); static int atkbdc_attach(device_t dev); -static void atkbdc_print_child(device_t bus, device_t dev); +static int atkbdc_print_child(device_t bus, device_t dev); static int atkbdc_read_ivar(device_t bus, device_t dev, int index, u_long *val); static int atkbdc_write_ivar(device_t bus, device_t dev, int index, @@ -201,19 +201,22 @@ atkbdc_attach(device_t dev) return 0; } -static void +static int atkbdc_print_child(device_t bus, device_t dev) { atkbdc_device_t *kbdcdev; + int retval = 0; kbdcdev = (atkbdc_device_t *)device_get_ivars(dev); + retval += bus_print_child_header(bus, dev); if (kbdcdev->flags != 0) - printf(" flags 0x%x", kbdcdev->flags); + retval += printf(" flags 0x%x", kbdcdev->flags); if (kbdcdev->irq != -1) - printf(" irq %d", kbdcdev->irq); + retval += printf(" irq %d", kbdcdev->irq); + retval += bus_print_child_footer(bus, dev); - printf(" on %s%d", device_get_name(bus), device_get_unit(bus)); + return (retval); } static int |
