1 1.3.6.1 yamt /* $NetBSD: commultiprint.c,v 1.3.6.1 2007/12/11 15:29:19 yamt Exp $ */ 2 1.3.6.1 yamt 3 1.3.6.1 yamt #include <sys/cdefs.h> 4 1.3.6.1 yamt __KERNEL_RCSID(0, "$NetBSD: commultiprint.c,v 1.3.6.1 2007/12/11 15:29:19 yamt Exp $"); 5 1.1 drochner 6 1.1 drochner #include <sys/param.h> 7 1.1 drochner #include <sys/systm.h> 8 1.1 drochner #include <sys/device.h> 9 1.3 ad #include <sys/bus.h> 10 1.1 drochner #include <dev/isa/com_multi.h> 11 1.1 drochner 12 1.1 drochner int 13 1.1 drochner commultiprint(void *vca, const char *pnp) 14 1.1 drochner { 15 1.1 drochner struct commulti_attach_args *ca = vca; 16 1.1 drochner 17 1.1 drochner if (pnp) 18 1.1 drochner aprint_normal("com at %s", pnp); 19 1.1 drochner aprint_normal(" slave %d", ca->ca_slave); 20 1.1 drochner return (UNCONF); 21 1.1 drochner } 22