NetBSD/sys/arch/x86/pci/agp_machdep.c

24 lines
472 B
C

/* $NetBSD: agp_machdep.c,v 1.1 2006/12/18 12:11:33 christos Exp $ */
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: agp_machdep.c,v 1.1 2006/12/18 12:11:33 christos Exp $");
#include <sys/types.h>
#include <sys/device.h>
#include <machine/cpu.h>
#include <machine/bus.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/agpvar.h>
#include <dev/pci/agpreg.h>
#include <machine/cpufunc.h>
void
agp_flush_cache(void)
{
wbinvd();
}