1
2#include <sys/cdefs.h>
3__KERNEL_RCSID(0, "$NetBSD: mcabusprint.c,v 1.4 2006/10/12 01:31:25 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
10int
11mcabusprint(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