summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/auich.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/pci/auich.c')
-rw-r--r--sys/dev/pci/auich.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/auich.c b/sys/dev/pci/auich.c
index 704012611a9..9519c828ad9 100644
--- a/sys/dev/pci/auich.c
+++ b/sys/dev/pci/auich.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auich.c,v 1.16 2001/10/24 03:43:48 mickey Exp $ */
+/* $OpenBSD: auich.c,v 1.17 2001/10/31 11:00:24 art Exp $ */
/*
* Copyright (c) 2000,2001 Michael Shalayeff
@@ -220,7 +220,7 @@ int auich_query_devinfo __P((void *, mixer_devinfo_t *));
void *auich_allocm __P((void *, u_long, int, int));
void auich_freem __P((void *, void *, int));
u_long auich_round_buffersize __P((void *, u_long));
-int auich_mappage __P((void *, void *, int, int));
+paddr_t auich_mappage __P((void *, void *, off_t, int));
int auich_get_props __P((void *));
int auich_trigger_output __P((void *, void *, void *, int, void (*)(void *),
void *, struct audio_params *));
@@ -770,11 +770,11 @@ auich_round_buffersize(v, size)
return size;
}
-int
+paddr_t
auich_mappage(v, mem, off, prot)
void *v;
void *mem;
- int off;
+ off_t off;
int prot;
{
struct auich_softc *sc = v;