Module Name: src Committed By: matt Date: Sat Feb 27 21:26:28 UTC 2010
Modified Files: src/sys/arch/evbmips/rmixl [matt-nb5-mips64]: machdep.c Log Message: Fix tpyo (missing ;) To generate a diff of this commit: cvs rdiff -u -r1.1.2.21 -r1.1.2.22 src/sys/arch/evbmips/rmixl/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/evbmips/rmixl/machdep.c diff -u src/sys/arch/evbmips/rmixl/machdep.c:1.1.2.21 src/sys/arch/evbmips/rmixl/machdep.c:1.1.2.22 --- src/sys/arch/evbmips/rmixl/machdep.c:1.1.2.21 Sat Feb 27 20:35:14 2010 +++ src/sys/arch/evbmips/rmixl/machdep.c Sat Feb 27 21:26:28 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.1.2.21 2010/02/27 20:35:14 snj Exp $ */ +/* $NetBSD: machdep.c,v 1.1.2.22 2010/02/27 21:26:28 matt Exp $ */ /* * Copyright 2001, 2002 Wasabi Systems, Inc. @@ -112,7 +112,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.1.2.21 2010/02/27 20:35:14 snj Exp $"); +__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.1.2.22 2010/02/27 21:26:28 matt Exp $"); #include "opt_ddb.h" #include "opt_com.h" @@ -248,7 +248,7 @@ #ifdef MULTIPROCESSOR -static bool rmixl_fixup_cop0_oscratch(int32_t, uint32_t [2]) +static bool rmixl_fixup_cop0_oscratch(int32_t, uint32_t [2]); void rmixl_get_wakeup_info(struct rmixl_config *); #ifdef MACHDEP_DEBUG static void rmixl_wakeup_info_print(volatile rmixlfw_cpu_wakeup_info_t *);