diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-01 18:05:31 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-01 18:05:31 +0000 |
commit | a4462f01a5f1812d408e29e9ada74a5ecd2dd8bd (patch) | |
tree | ba8e7e36a803b6b481bded6c693dd72cfe998e84 /sys/arch/alpha/tc/cfb.c | |
parent | 43e24c319b3810d8b6c6ce0398bb326daca7f62c (diff) |
Adapt to recent wscons changes.
Diffstat (limited to 'sys/arch/alpha/tc/cfb.c')
-rw-r--r-- | sys/arch/alpha/tc/cfb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/tc/cfb.c b/sys/arch/alpha/tc/cfb.c index 09a059f245d..f2d978ed6a2 100644 --- a/sys/arch/alpha/tc/cfb.c +++ b/sys/arch/alpha/tc/cfb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cfb.c,v 1.11 2000/08/04 16:45:47 ericj Exp $ */ +/* $OpenBSD: cfb.c,v 1.12 2001/02/01 18:05:30 art Exp $ */ /* $NetBSD: cfb.c,v 1.7 1996/12/05 01:39:39 cgd Exp $ */ /* @@ -99,7 +99,7 @@ struct wsscreen_list cfb_screenlist = { }; int cfbioctl __P((void *, u_long, caddr_t, int, struct proc *)); -int cfbmmap __P((void *, off_t, int)); +paddr_t cfbmmap __P((void *, off_t, int)); int cfbintr __P((void *)); static int cfb_alloc_screen __P((void *, const struct wsscreen_descr *, @@ -304,7 +304,7 @@ cfbioctl(v, cmd, data, flag, p) return (-1); } -int +paddr_t cfbmmap(v, offset, prot) void *v; off_t offset; |