1
2#include <sys/cdefs.h>
3__KERNEL_RCSID(0, "$NetBSD: agpbusprint.c,v 1.4 2006/10/12 01:31:28 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
11int
12agpbusprint(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