summaryrefslogtreecommitdiff
path: root/sys/arch/i386/pci/vga_post.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/i386/pci/vga_post.c')
-rw-r--r--sys/arch/i386/pci/vga_post.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/pci/vga_post.c b/sys/arch/i386/pci/vga_post.c
index e3d69139328..223de1f7f30 100644
--- a/sys/arch/i386/pci/vga_post.c
+++ b/sys/arch/i386/pci/vga_post.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vga_post.c,v 1.6 2014/04/08 09:02:51 mpi Exp $ */
+/* $OpenBSD: vga_post.c,v 1.7 2014/07/12 18:44:42 tedu Exp $ */
/* $NetBSD: vga_post.c,v 1.12 2009/03/15 21:32:36 cegger Exp $ */
/*-
@@ -142,7 +142,7 @@ vga_post_init(int bus, int device, int function)
&sc->ram_backing, BASE_MEMORY/PAGE_SIZE, UVM_PLA_WAITOK);
if (err) {
uvm_km_free(kernel_map, sc->sys_image, 1024 * 1024);
- free(sc, M_DEVBUF);
+ free(sc, M_DEVBUF, 0);
return NULL;
}
@@ -213,7 +213,7 @@ vga_post_free(struct vga_post *sc)
uvm_km_free(kernel_map, sc->sys_image, 1024 * 1024);
pmap_update(pmap_kernel());
- free(sc, M_DEVBUF);
+ free(sc, M_DEVBUF, 0);
}
#ifdef DDB