Module Name:    src
Committed By:   dholland
Date:           Wed Apr 25 08:19:33 UTC 2012

Modified Files:
        src/sys/arch/sparc/sparc: machdep.c

Log Message:
Fix totally uncompilable code. PR 46374 from Henning Petersen.


To generate a diff of this commit:
cvs rdiff -u -r1.317 -r1.318 src/sys/arch/sparc/sparc/machdep.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/sparc/sparc/machdep.c
diff -u src/sys/arch/sparc/sparc/machdep.c:1.317 src/sys/arch/sparc/sparc/machdep.c:1.318
--- src/sys/arch/sparc/sparc/machdep.c:1.317	Sun Feb 19 21:06:29 2012
+++ src/sys/arch/sparc/sparc/machdep.c	Wed Apr 25 08:19:33 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: machdep.c,v 1.317 2012/02/19 21:06:29 rmind Exp $ */
+/*	$NetBSD: machdep.c,v 1.318 2012/04/25 08:19:33 dholland Exp $ */
 
 /*-
  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.317 2012/02/19 21:06:29 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.318 2012/04/25 08:19:33 dholland Exp $");
 
 #include "opt_compat_netbsd.h"
 #include "opt_compat_sunos.h"
@@ -2523,7 +2523,7 @@ bus_space_write_4(
 	uint32_t		v)
 {
 	__insn_barrier();
-	bus_space_write_4_real(
+	bus_space_write_4_real(t, h, o, v);
 }
 
 void

Reply via email to