1 /* $NetBSD: mcabusprint.c,v 1.1 2004/08/30 10:30:38 drochner Exp $ */ 2 3 #include <sys/param.h> 4 #include <sys/systm.h> 5 #include <sys/device.h> 6 #include <dev/mca/mcavar.h> 7 8 int 9 mcabusprint(void *vma, const char *pnp) 10 { 11 #if 0 12 struct mcabus_attach_args *ma = vma; 13 #endif 14 if (pnp) 15 aprint_normal("mca at %s", pnp); 16 return (UNCONF); 17 } 18