Home | History | Annotate | Line # | Download | only in mca
      1 
      2 #include <sys/cdefs.h>
      3 __KERNEL_RCSID(0, "$NetBSD: mcabusprint.c,v 1.5 2006/11/16 01:33:05 christos Exp $");
      4 
      5 #include <sys/param.h>
      6 #include <sys/systm.h>
      7 #include <sys/device.h>
      8 #include <dev/mca/mcavar.h>
      9 
     10 int
     11 mcabusprint(void *vma, const char *pnp)
     12 {
     13 #if 0
     14 	struct mcabus_attach_args *ma = vma;
     15 #endif
     16 	if (pnp)
     17 		aprint_normal("mca at %s", pnp);
     18 	return (UNCONF);
     19 }
     20