15e4045c6Slukem 25e4045c6Slukem #include <sys/cdefs.h> 3*168cd830Schristos __KERNEL_RCSID(0, "$NetBSD: mcabusprint.c,v 1.5 2006/11/16 01:33:05 christos Exp $"); 45fa05333Sdrochner 55fa05333Sdrochner #include <sys/param.h> 65fa05333Sdrochner #include <sys/systm.h> 75fa05333Sdrochner #include <sys/device.h> 85fa05333Sdrochner #include <dev/mca/mcavar.h> 95fa05333Sdrochner 105fa05333Sdrochner int mcabusprint(void * vma,const char * pnp)11*168cd830Schristosmcabusprint(void *vma, const char *pnp) 125fa05333Sdrochner { 135fa05333Sdrochner #if 0 145fa05333Sdrochner struct mcabus_attach_args *ma = vma; 155fa05333Sdrochner #endif 165fa05333Sdrochner if (pnp) 175fa05333Sdrochner aprint_normal("mca at %s", pnp); 185fa05333Sdrochner return (UNCONF); 195fa05333Sdrochner } 20