18 lines
332 B
C
18 lines
332 B
C
/* $NetBSD: mcabusprint.c,v 1.1 2004/08/30 10:30:38 drochner 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);
|
|
}
|