xref: /netbsd-src/sys/dev/isa/isabusprint.c (revision 168cd830d22e1f4a4c2bde1105f9f94d40fb870d)
1 
2 #include <sys/cdefs.h>
3 __KERNEL_RCSID(0, "$NetBSD: isabusprint.c,v 1.5 2006/11/16 01:33:00 christos Exp $");
4 
5 #include <sys/param.h>
6 #include <sys/systm.h>
7 #include <sys/device.h>
8 #include <dev/isa/isavar.h>
9 
10 int
isabusprint(void * via,const char * pnp)11 isabusprint(void *via, const char *pnp)
12 {
13 	if (pnp)
14 		aprint_normal("isa at %s", pnp);
15 	return (UNCONF);
16 }
17