summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/sv.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/pci/sv.c')
-rw-r--r--sys/dev/pci/sv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/sv.c b/sys/dev/pci/sv.c
index 74d06b9a55b..7defd46f441 100644
--- a/sys/dev/pci/sv.c
+++ b/sys/dev/pci/sv.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sv.c,v 1.9 2001/08/25 10:13:30 art Exp $ */
+/* $OpenBSD: sv.c,v 1.10 2001/10/31 11:00:24 art Exp $ */
/*
* Copyright (c) 1998 Constantine Paul Sapuntzakis
@@ -160,7 +160,7 @@ int sv_query_devinfo __P((void *, mixer_devinfo_t *));
void *sv_malloc __P((void *, u_long, int, int));
void sv_free __P((void *, void *, int));
u_long sv_round __P((void *, u_long));
-int sv_mappage __P((void *, void *, int, int));
+paddr_t sv_mappage __P((void *, void *, off_t, int));
int sv_get_props __P((void *));
void sv_dumpregs __P((struct sv_softc *sc));
@@ -1491,11 +1491,11 @@ sv_round(addr, size)
return (size);
}
-int
+paddr_t
sv_mappage(addr, mem, off, prot)
void *addr;
void *mem;
- int off;
+ off_t off;
int prot;
{
struct sv_softc *sc = addr;