Home | History | Annotate | Line # | Download | only in pci
agpbusprint.c revision 1.2
      1  1.2     lukem /* $NetBSD: agpbusprint.c,v 1.2 2005/05/24 05:14:37 lukem Exp $ */
      2  1.2     lukem 
      3  1.2     lukem #include <sys/cdefs.h>
      4  1.2     lukem __KERNEL_RCSID(0, "$NetBSD: agpbusprint.c,v 1.2 2005/05/24 05:14:37 lukem Exp $");
      5  1.1  drochner 
      6  1.1  drochner #include <sys/param.h>
      7  1.1  drochner #include <sys/systm.h>
      8  1.1  drochner #include <sys/device.h>
      9  1.1  drochner #include <dev/pci/pcivar.h>
     10  1.1  drochner #include <dev/pci/agpvar.h>
     11  1.1  drochner 
     12  1.1  drochner int
     13  1.1  drochner agpbusprint(void *vaa, const char *pnp)
     14  1.1  drochner {
     15  1.1  drochner #if 0
     16  1.1  drochner 	struct agpbus_attach_args *aa = vaa;
     17  1.1  drochner #endif
     18  1.1  drochner 	if (pnp)
     19  1.1  drochner 		aprint_normal("agp at %s", pnp);
     20  1.1  drochner 	return (UNCONF);
     21  1.1  drochner }
     22