2005-05-24 09:14:37 +04:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2006-11-16 04:32:37 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: mcabusprint.c,v 1.5 2006/11/16 01:33:05 christos Exp $");
|
2004-08-30 14:30:38 +04:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <dev/mca/mcavar.h>
|
|
|
|
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
mcabusprint(void *vma, const char *pnp)
|
2004-08-30 14:30:38 +04:00
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
struct mcabus_attach_args *ma = vma;
|
|
|
|
#endif
|
|
|
|
if (pnp)
|
|
|
|
aprint_normal("mca at %s", pnp);
|
|
|
|
return (UNCONF);
|
|
|
|
}
|