Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Update arc map routine prototype to compile again.



details:   https://anonhg.NetBSD.org/src/rev/a4bb2f107874
branches:  trunk
changeset: 495852:a4bb2f107874
user:      jeffs <jeffs%NetBSD.org@localhost>
date:      Tue Aug 08 02:11:05 2000 +0000

description:
Update arc map routine prototype to compile again.

diffstat:

 sys/dev/ic/vga.c    |  4 ++--
 sys/dev/ic/vgavar.h |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r a3b5688e4b92 -r a4bb2f107874 sys/dev/ic/vga.c
--- a/sys/dev/ic/vga.c  Mon Aug 07 22:38:10 2000 +0000
+++ b/sys/dev/ic/vga.c  Tue Aug 08 02:11:05 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vga.c,v 1.30 2000/07/15 18:47:54 drochner Exp $ */
+/* $NetBSD: vga.c,v 1.31 2000/08/08 02:11:05 jeffs Exp $ */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -542,7 +542,7 @@
        struct device *self;
        bus_space_tag_t iot, memt;
        int type;
-       int (*map) __P((void *, vaddr_t, int));
+       paddr_t (*map) __P((void *, off_t, int));
 {
 #endif /* arc */
        int console;
diff -r a3b5688e4b92 -r a4bb2f107874 sys/dev/ic/vgavar.h
--- a/sys/dev/ic/vgavar.h       Mon Aug 07 22:38:10 2000 +0000
+++ b/sys/dev/ic/vgavar.h       Tue Aug 08 02:11:05 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vgavar.h,v 1.4 2000/06/17 07:11:50 soda Exp $ */
+/* $NetBSD: vgavar.h,v 1.5 2000/08/08 02:11:05 jeffs Exp $ */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -141,7 +141,7 @@
 #ifdef arc
 void   vga_extended_attach __P((struct device *, bus_space_tag_t,
                                 bus_space_tag_t, int,
-                                int (*) __P((void *, off_t, int))));
+                                paddr_t (*) __P((void *, off_t, int))));
 #endif
 int    vga_is_console __P((bus_space_tag_t, int));
 



Home | Main Index | Thread Index | Old Index