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