xref: /netbsd-src/sys/dev/mca/mcabusprint.c (revision aaf4ece63a859a04e37cf3a7229b5fab0157cc06)
1 
2 #include <sys/cdefs.h>
3 __KERNEL_RCSID(0, "$NetBSD: mcabusprint.c,v 1.3 2005/12/11 12:22:18 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