Home | History | Annotate | Line # | Download | only in isa
      1  1.2     lukem 
      2  1.2     lukem #include <sys/cdefs.h>
      3  1.5  christos __KERNEL_RCSID(0, "$NetBSD: isabusprint.c,v 1.5 2006/11/16 01:33:00 christos 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/isa/isavar.h>
      9  1.1  drochner 
     10  1.1  drochner int
     11  1.5  christos isabusprint(void *via, const char *pnp)
     12  1.1  drochner {
     13  1.1  drochner 	if (pnp)
     14  1.1  drochner 		aprint_normal("isa at %s", pnp);
     15  1.1  drochner 	return (UNCONF);
     16  1.1  drochner }
     17