git: cb5ea040be73 - stable/13 - hwpmc: Fix a typo

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Tue, 09 May 2023 14:03:00 UTC
The branch stable/13 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=cb5ea040be733fbd3da6490c545c0b4eae43f624

commit cb5ea040be733fbd3da6490c545c0b4eae43f624
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2023-05-01 15:19:25 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2023-05-09 14:01:03 +0000

    hwpmc: Fix a typo
    
    MFC after:      1 week
    
    (cherry picked from commit 56da525b535f8537205bccd1f4b25b3ce354ca62)
---
 sys/dev/hwpmc/hwpmc_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/hwpmc/hwpmc_core.c b/sys/dev/hwpmc/hwpmc_core.c
index ff6bfbd4322f..5d29931c90f0 100644
--- a/sys/dev/hwpmc/hwpmc_core.c
+++ b/sys/dev/hwpmc/hwpmc_core.c
@@ -1248,7 +1248,7 @@ pmc_core_initialize(struct pmc_mdep *md, int maxcpu, int version_override)
 	if (core_version < 1 || core_version > 5 ||
 	    (core_cputype != PMC_CPU_INTEL_CORE && core_version == 1)) {
 		/* Unknown PMC architecture. */
-		printf("hwpc_core: unknown PMC architecture: %d\n",
+		printf("hwpmc_core: unknown PMC architecture: %d\n",
 		    core_version);
 		return (EPROGMISMATCH);
 	}