Module Name: src
Committed By: macallan
Date: Sat Jun 6 17:46:47 UTC 2015
Modified Files:
src/sys/arch/mips/mips: cpu_subr.c
Log Message:
use PRIxCPUSET
now this builds again on o32
To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/mips/mips/cpu_subr.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/mips/mips/cpu_subr.c
diff -u src/sys/arch/mips/mips/cpu_subr.c:1.21 src/sys/arch/mips/mips/cpu_subr.c:1.22
--- src/sys/arch/mips/mips/cpu_subr.c:1.21 Thu Jun 4 05:32:05 2015
+++ src/sys/arch/mips/mips/cpu_subr.c Sat Jun 6 17:46:47 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu_subr.c,v 1.21 2015/06/04 05:32:05 matt Exp $ */
+/* $NetBSD: cpu_subr.c,v 1.22 2015/06/06 17:46:47 macallan Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.21 2015/06/04 05:32:05 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.22 2015/06/06 17:46:47 macallan Exp $");
#include "opt_cputype.h"
#include "opt_ddb.h"
@@ -935,7 +935,7 @@ cpu_boot_secondary_processors(void)
{
CPU_INFO_ITERATOR cii;
struct cpu_info *ci;
- aprint_verbose("Booting secondary processors (%#"PRIx64")",
+ aprint_verbose("Booting secondary processors (%#"PRIxCPUSET")",
cpus_hatched);
for (CPU_INFO_FOREACH(cii, ci)) {
if (CPU_IS_PRIMARY(ci))