blob: e2641370bf8fa699928ea2a3a0dbe621d692d0c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: mcabusprint.c,v 1.3 2005/12/11 12:22:18 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <dev/mca/mcavar.h>
int
mcabusprint(void *vma, const char *pnp)
{
#if 0
struct mcabus_attach_args *ma = vma;
#endif
if (pnp)
aprint_normal("mca at %s", pnp);
return (UNCONF);
}
|