NetBSD/sys/dev/mca/mcabusprint.c

20 lines
372 B
C
Raw Normal View History

2005-05-24 09:14:37 +04:00
#include <sys/cdefs.h>
2005-12-11 15:16:03 +03:00
__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);
}