blob: 5b79972ab5e51d983c2383f1a38e50348f1f6c03 (
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.5 2006/11/16 01:33:05 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);
}
|