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