Module Name:    src
Committed By:   macallan
Date:           Tue Feb 14 22:22:45 UTC 2012

Modified Files:
        src/sys/arch/evbmips/loongson/dev: glx.c

Log Message:
fix 'old style function definition' warning:
blah() -> blah(void)
ok riz


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbmips/loongson/dev/glx.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/evbmips/loongson/dev/glx.c
diff -u src/sys/arch/evbmips/loongson/dev/glx.c:1.1 src/sys/arch/evbmips/loongson/dev/glx.c:1.2
--- src/sys/arch/evbmips/loongson/dev/glx.c:1.1	Sat Aug 27 13:42:45 2011
+++ src/sys/arch/evbmips/loongson/dev/glx.c	Tue Feb 14 22:22:45 2012
@@ -21,7 +21,7 @@
  * XXX too many hardcoded numbers... need to expand glxreg.h
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: glx.c,v 1.1 2011/08/27 13:42:45 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: glx.c,v 1.2 2012/02/14 22:22:45 macallan Exp $");
 
 
 #include <sys/param.h>
@@ -295,7 +295,7 @@ glx_pci_write_hook(void *v, pcitag_t tag
 }
 
 pcireg_t
-glx_get_status()
+glx_get_status(void)
 {
 	uint64_t msr;
 	pcireg_t data;

Reply via email to