summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
authordsl <dsl@NetBSD.org>2009-03-16 23:11:09 +0000
committerdsl <dsl@NetBSD.org>2009-03-16 23:11:09 +0000
commit7cc9af7d6484d647533e2cc7e39ca9756eef8fe5 (patch)
treeb42b2e3fa1be867ebdac07c8c6139ccedd917bf0 /sys/dev/isa
parentfd24f7c9171367d7748eaf9a220cde2ab9311f13 (diff)
ANSIfy functions with function-pointer arguments
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/ega.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/dev/isa/ega.c b/sys/dev/isa/ega.c
index 2a5c2210723..c0ec79796ce 100644
--- a/sys/dev/isa/ega.c
+++ b/sys/dev/isa/ega.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ega.c,v 1.26 2009/03/14 21:04:20 dsl Exp $ */
+/* $NetBSD: ega.c,v 1.27 2009/03/16 23:11:15 dsl Exp $ */
/*
* Copyright (c) 1999
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ega.c,v 1.26 2009/03/14 21:04:20 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ega.c,v 1.27 2009/03/16 23:11:15 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -647,12 +647,7 @@ ega_setfont(struct ega_config *vc, struct egascreen *scr)
}
static int
-ega_show_screen(v, cookie, waitok, cb, cbarg)
- void *v;
- void *cookie;
- int waitok;
- void (*cb)(void *, int, int);
- void *cbarg;
+ega_show_screen(void *v, void *cookie, int waitok, void (*cb)(void *, int, int), void *cbarg)
{
struct egascreen *scr = cookie, *oldscr;
struct ega_config *vc = scr->cfg;