Home | History | Annotate | Line # | Download | only in isa
isabusprint.c revision 1.1
      1  1.1  drochner /* $NetBSD: isabusprint.c,v 1.1 2004/08/30 10:30:38 drochner Exp $ */
      2  1.1  drochner 
      3  1.1  drochner #include <sys/param.h>
      4  1.1  drochner #include <sys/systm.h>
      5  1.1  drochner #include <sys/device.h>
      6  1.1  drochner #include <dev/isa/isavar.h>
      7  1.1  drochner 
      8  1.1  drochner int
      9  1.1  drochner isabusprint(void *via, const char *pnp)
     10  1.1  drochner {
     11  1.1  drochner #if 0
     12  1.1  drochner 	struct isabus_attach_args *ia = via;
     13  1.1  drochner #endif
     14  1.1  drochner 	if (pnp)
     15  1.1  drochner 		aprint_normal("isa at %s", pnp);
     16  1.1  drochner 	return (UNCONF);
     17  1.1  drochner }
     18