Home | History | Annotate | Line # | Download | only in mca
mcabusprint.c revision 1.1.2.3
      1 /* $NetBSD: mcabusprint.c,v 1.1.2.3 2004/09/18 14:48:19 skrll 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