diff options
| author | cegger <cegger@NetBSD.org> | 2009-03-18 10:22:21 +0000 |
|---|---|---|
| committer | cegger <cegger@NetBSD.org> | 2009-03-18 10:22:21 +0000 |
| commit | df7f595ecd6efe54ea7c11083e2dbf711cad4b31 (patch) | |
| tree | 2e70fb4fc9234da64b5c0d61f729656db3c80105 /sys/dev/sun | |
| parent | 61260da8850e8a6c3adc941d28160d30877a0c04 (diff) | |
Ansify function definitions w/o arguments. Generated with sed.
Diffstat (limited to 'sys/dev/sun')
| -rw-r--r-- | sys/dev/sun/fb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/sun/fb.c b/sys/dev/sun/fb.c index 95454ff9f1e..09d997851b1 100644 --- a/sys/dev/sun/fb.c +++ b/sys/dev/sun/fb.c @@ -1,4 +1,4 @@ -/* $NetBSD: fb.c,v 1.30 2009/03/14 21:04:23 dsl Exp $ */ +/* $NetBSD: fb.c,v 1.31 2009/03/18 10:22:41 cegger Exp $ */ /* * Copyright (c) 1992, 1993 @@ -46,7 +46,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: fb.c,v 1.30 2009/03/14 21:04:23 dsl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: fb.c,v 1.31 2009/03/18 10:22:41 cegger Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -92,7 +92,7 @@ const struct cdevsw fb_cdevsw = { }; void -fb_unblank() +fb_unblank(void) { struct fbdevlist *fbl = &fblist; @@ -501,14 +501,14 @@ fbrcons_init(struct fbdevice *fb) } int -fbrcons_rows() +fbrcons_rows(void) { return ((fblist.fb_dev != NULL) ? fblist.fb_dev->fb_rcons.rc_maxrow : 0); } int -fbrcons_cols() +fbrcons_cols(void) { return ((fblist.fb_dev != NULL) ? fblist.fb_dev->fb_rcons.rc_maxcol : 0); |
