summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2013-12-09 19:52:12 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2013-12-09 19:52:12 +0000
commitf1bd72bb6138ea8bc3661e2090dacfcdd6e20c3e (patch)
tree6e00790436c540d91d81296599123103c94c12b7 /sys/dev/pci
parent751a7e6ae05fbfe4a52fb6e595e72b2ea9ba10f8 (diff)
Remove MD intagp(4) code that is unused now that inteldrm(4) manages the GTT
all by itself.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/agp_i810.c3
-rw-r--r--sys/dev/pci/agpvar.h4
2 files changed, 2 insertions, 5 deletions
diff --git a/sys/dev/pci/agp_i810.c b/sys/dev/pci/agp_i810.c
index f055a357ab6..abcdb2f3e17 100644
--- a/sys/dev/pci/agp_i810.c
+++ b/sys/dev/pci/agp_i810.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: agp_i810.c,v 1.79 2013/11/19 19:14:09 kettenis Exp $ */
+/* $OpenBSD: agp_i810.c,v 1.80 2013/12/09 19:52:11 kettenis Exp $ */
/*-
* Copyright (c) 2000 Doug Rabson
@@ -129,7 +129,6 @@ struct agp_methods agp_i810_methods = {
agp_i810_bind_page,
agp_i810_unbind_page,
agp_i810_flush_tlb,
- intagp_dma_sync,
agp_i810_enable,
agp_i810_alloc_memory,
agp_i810_free_memory,
diff --git a/sys/dev/pci/agpvar.h b/sys/dev/pci/agpvar.h
index 36f9d2de7ee..3646d0e9120 100644
--- a/sys/dev/pci/agpvar.h
+++ b/sys/dev/pci/agpvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: agpvar.h,v 1.28 2013/12/07 10:57:06 kettenis Exp $ */
+/* $OpenBSD: agpvar.h,v 1.29 2013/12/09 19:52:11 kettenis Exp $ */
/* $NetBSD: agpvar.h,v 1.4 2001/10/01 21:54:48 fvdl Exp $ */
/*-
@@ -110,8 +110,6 @@ struct agp_methods {
void (*bind_page)(void *, bus_addr_t, paddr_t, int);
void (*unbind_page)(void *, bus_addr_t);
void (*flush_tlb)(void *);
- void (*dma_sync)(bus_dma_tag_t, bus_dmamap_t, bus_addr_t,
- bus_size_t, int);
int (*enable)(void *, u_int32_t mode);
struct agp_memory *
(*alloc_memory)(void *, int, vsize_t);