1 1.3.8.1 bouyer /* $NetBSD: commultiprint.c,v 1.3.8.1 2007/12/13 21:55:40 bouyer Exp $ */ 2 1.3.8.1 bouyer 3 1.3.8.1 bouyer #include <sys/cdefs.h> 4 1.3.8.1 bouyer __KERNEL_RCSID(0, "$NetBSD: commultiprint.c,v 1.3.8.1 2007/12/13 21:55:40 bouyer 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