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