remove unused agp_flush_cache_range()
authorjsg <jsg@openbsd.org>
Tue, 2 Jul 2024 04:29:01 +0000 (04:29 +0000)
committerjsg <jsg@openbsd.org>
Tue, 2 Jul 2024 04:29:01 +0000 (04:29 +0000)
sys/arch/amd64/pci/agp_machdep.c
sys/arch/i386/pci/agp_machdep.c
sys/dev/pci/agpvar.h

index bee427e..b4fde5a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: agp_machdep.c,v 1.15 2024/07/02 04:10:25 jsg Exp $    */
+/*     $OpenBSD: agp_machdep.c,v 1.16 2024/07/02 04:29:01 jsg Exp $    */
 
 /*
  * Copyright (c) 2008 - 2009 Owain G. Ainsworth <oga@openbsd.org>
 #include <sys/param.h>
 #include <sys/systm.h>
 
-#include <uvm/uvm_extern.h>
-
 #include <machine/cpufunc.h>
-#include <machine/pmap.h>
 
 void
 agp_flush_cache(void)
 {
        wbinvd();
 }
-
-void
-agp_flush_cache_range(vaddr_t va, vsize_t sz)
-{
-       pmap_flush_cache(va, sz);
-}
index ef5232d..e48463e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: agp_machdep.c,v 1.22 2024/07/02 04:10:25 jsg Exp $    */
+/*     $OpenBSD: agp_machdep.c,v 1.23 2024/07/02 04:29:01 jsg Exp $    */
 
 /*
  * Copyright (c) 2008 - 2009 Owain G. Ainsworth <oga@openbsd.org>
 #include <sys/param.h>
 #include <sys/systm.h>
 
-#include <uvm/uvm_extern.h>
-
 #include <machine/cpufunc.h>
-#include <machine/pmap.h>
 
 void
 agp_flush_cache(void)
 {
        wbinvd();
 }
-
-void
-agp_flush_cache_range(vaddr_t va, vsize_t sz)
-{
-       pmap_flush_cache(va, sz);
-}
index c290f1b..2d0321f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: agpvar.h,v 1.36 2024/07/02 04:10:25 jsg Exp $ */
+/*     $OpenBSD: agpvar.h,v 1.37 2024/07/02 04:29:01 jsg Exp $ */
 /*     $NetBSD: agpvar.h,v 1.4 2001/10/01 21:54:48 fvdl Exp $  */
 
 /*-
@@ -132,7 +132,6 @@ struct agp_gatt *
        agp_alloc_gatt(bus_dma_tag_t, u_int32_t);
 void   agp_free_gatt(bus_dma_tag_t, struct agp_gatt *);
 void   agp_flush_cache(void);
-void   agp_flush_cache_range(vaddr_t, vsize_t);
 int    agp_generic_enable(struct agp_softc *, u_int32_t);
 
 int    agp_alloc_dmamem(bus_dma_tag_t, size_t, bus_dmamap_t *,