diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-01-31 16:38:03 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-01-31 16:38:03 +0000 |
commit | 9337e383d2a63a9fe7f2562ce38cafac86e53c9e (patch) | |
tree | 2e178808bc03f7a0d8fd4d76ede8b4dbdc18e5db /sys/dev/isa | |
parent | d43ec8d2f54af07f14bcad136dfe1c0ac9bdcf06 (diff) |
OpenBSD does have paddr_t, I can't explain why I thought it didn't; art@
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/pcdisplay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/pcdisplay.c b/sys/dev/isa/pcdisplay.c index 0cba2c79564..dd8daae7d5e 100644 --- a/sys/dev/isa/pcdisplay.c +++ b/sys/dev/isa/pcdisplay.c @@ -109,7 +109,7 @@ const struct wsscreen_list pcdisplay_screenlist = { }; static int pcdisplay_ioctl __P((void *, u_long, caddr_t, int, struct proc *)); -static u_long pcdisplay_mmap __P((void *, off_t, int)); +static paddr_t pcdisplay_mmap __P((void *, off_t, int)); static int pcdisplay_alloc_screen __P((void *, const struct wsscreen_descr *, void **, int *, int *, long *)); static void pcdisplay_free_screen __P((void *, void *)); @@ -346,7 +346,7 @@ pcdisplay_ioctl(v, cmd, data, flag, p) return (-1); } -static u_long +static paddr_t pcdisplay_mmap(v, offset, prot) void *v; off_t offset; |