summaryrefslogtreecommitdiff
path: root/sys/dev/ic/vga.c
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2001-01-31 16:38:03 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2001-01-31 16:38:03 +0000
commit9337e383d2a63a9fe7f2562ce38cafac86e53c9e (patch)
tree2e178808bc03f7a0d8fd4d76ede8b4dbdc18e5db /sys/dev/ic/vga.c
parentd43ec8d2f54af07f14bcad136dfe1c0ac9bdcf06 (diff)
OpenBSD does have paddr_t, I can't explain why I thought it didn't; art@
Diffstat (limited to 'sys/dev/ic/vga.c')
-rw-r--r--sys/dev/ic/vga.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/vga.c b/sys/dev/ic/vga.c
index 6441f204470..c2d59fb6e47 100644
--- a/sys/dev/ic/vga.c
+++ b/sys/dev/ic/vga.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vga.c,v 1.15 2001/01/31 02:12:28 aaron Exp $ */
+/* $OpenBSD: vga.c,v 1.16 2001/01/31 16:38:00 aaron Exp $ */
/* $NetBSD: vga.c,v 1.28.2.1 2000/06/30 16:27:47 simonb Exp $ */
/*
@@ -240,7 +240,7 @@ const struct wsscreen_list vga_screenlist = {
};
int vga_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
-u_long vga_mmap __P((void *, off_t, int));
+paddr_t vga_mmap __P((void *, off_t, int));
int vga_alloc_screen __P((void *, const struct wsscreen_descr *,
void **, int *, int *, long *));
void vga_free_screen __P((void *, void *));
@@ -647,7 +647,7 @@ vga_ioctl(v, cmd, data, flag, p)
return -1;
}
-u_long
+paddr_t
vga_mmap(v, offset, prot)
void *v;
off_t offset;