1 1.4 lukem /* $NetBSD: commultiprint.c,v 1.4 2007/12/11 11:56:46 lukem Exp $ */ 2 1.4 lukem 3 1.4 lukem #include <sys/cdefs.h> 4 1.4 lukem __KERNEL_RCSID(0, "$NetBSD: commultiprint.c,v 1.4 2007/12/11 11:56:46 lukem 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