summaryrefslogtreecommitdiff
path: root/sys/arch/arm64/include
diff options
context:
space:
mode:
authorScott Soule Cheloha <cheloha@cvs.openbsd.org>2024-02-25 19:15:51 +0000
committerScott Soule Cheloha <cheloha@cvs.openbsd.org>2024-02-25 19:15:51 +0000
commit5bf0fe41970954b3726bc70c2e29a3c2687161e9 (patch)
tree3fecee3a3a7c3e35f90efaf3d22244aaf485b889 /sys/arch/arm64/include
parent40c7459b03e49543f30466eb294475435b8bcc16 (diff)
clockintr: rename "struct clockintr_queue" to "struct clockqueue"
The code has outgrown the original name for this struct. Both the external and internal APIs have used the "clockqueue" namespace for some time when operating on it, and that name is eyeball-consistent with "clockintr" and "clockrequest", so "clockqueue" it is.
Diffstat (limited to 'sys/arch/arm64/include')
-rw-r--r--sys/arch/arm64/include/cpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm64/include/cpu.h b/sys/arch/arm64/include/cpu.h
index 937f5fa0e41..d0521a33ab3 100644
--- a/sys/arch/arm64/include/cpu.h
+++ b/sys/arch/arm64/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.42 2024/01/24 19:23:39 cheloha Exp $ */
+/* $OpenBSD: cpu.h,v 1.43 2024/02/25 19:15:50 cheloha Exp $ */
/*
* Copyright (c) 2016 Dale Rahn <drahn@dalerahn.com>
*
@@ -176,7 +176,7 @@ struct cpu_info {
struct gmonparam *ci_gmon;
struct clockintr ci_gmonclock;
#endif
- struct clockintr_queue ci_queue;
+ struct clockqueue ci_queue;
char ci_panicbuf[512];
};