summaryrefslogtreecommitdiff
path: root/sys/arch/arm
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/arm
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/arm')
-rw-r--r--sys/arch/arm/include/cpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/include/cpu.h b/sys/arch/arm/include/cpu.h
index aa02a42fc2d..1b973d3f569 100644
--- a/sys/arch/arm/include/cpu.h
+++ b/sys/arch/arm/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.65 2024/01/24 19:23:39 cheloha Exp $ */
+/* $OpenBSD: cpu.h,v 1.66 2024/02/25 19:15:50 cheloha Exp $ */
/* $NetBSD: cpu.h,v 1.34 2003/06/23 11:01:08 martin Exp $ */
/*
@@ -200,7 +200,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];
};