Update arc map routine prototype to compile again.

This commit is contained in:
jeffs 2000-08-08 02:11:05 +00:00
parent 3d73ef5a2b
commit aaa5c58d70
2 changed files with 4 additions and 4 deletions

View File

@ -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 @@ vga_extended_attach(self, iot, memt, type, map)
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;

View File

@ -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 @@ void vga_common_attach __P((struct device *, bus_space_tag_t,
#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));