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