Module Name: src
Committed By: skrll
Date: Mon Jan 22 07:15:25 UTC 2024
Modified Files:
src/sys/arch/hppa/hppa: machdep.c
Log Message:
Don't duplicate PIM_CPU_BITS in one printf.
PIM_CPU_HPMC_BITS already includes PIM_CPU_HPMC_BITS
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/hppa/hppa/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/hppa/hppa/machdep.c
diff -u src/sys/arch/hppa/hppa/machdep.c:1.18 src/sys/arch/hppa/hppa/machdep.c:1.19
--- src/sys/arch/hppa/hppa/machdep.c:1.18 Thu Sep 29 06:39:59 2022
+++ src/sys/arch/hppa/hppa/machdep.c Mon Jan 22 07:15:25 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.18 2022/09/29 06:39:59 skrll Exp $ */
+/* $NetBSD: machdep.c,v 1.19 2024/01/22 07:15:25 skrll Exp $ */
/*-
* Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.18 2022/09/29 06:39:59 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.19 2024/01/22 07:15:25 skrll Exp $");
#include "opt_cputype.h"
#include "opt_ddb.h"
@@ -1563,7 +1563,7 @@ hppa_pim_dump(int check_type, void *data
PIM_WORD("\n\n\tCheck Type", checks->pim_check_type,
PIM_CHECK_BITS);
PIM_WORD("\n\tCPU State", checks->pim_check_cpu_state,
- PIM_CPU_BITS PIM_CPU_HPMC_BITS);
+ PIM_CPU_HPMC_BITS);
PIM_WORD("\n\tCache Check", checks->pim_check_cache,
PIM_CACHE_BITS);
PIM_WORD("\n\tTLB Check", checks->pim_check_tlb,