summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2024-11-05 21:47:01 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2024-11-05 21:47:01 +0000
commit79049d6f58fa84c13f5e3f3edfeae50d97e14c22 (patch)
treec62b568858cdd50265a599fdb90db91aa3f0e0e9 /sys/arch/powerpc
parent6ff4d9fb109f7729f527f102d4e071eac1cfc62f (diff)
The `pri' field of struct clockframe has become unused since the removal of
the need for CLKF_BASEPRI in OpenBSD 3.2. Rename it to stress the fact that it is no longer used.
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r--sys/arch/powerpc/include/frame.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/frame.h b/sys/arch/powerpc/include/frame.h
index 4eda8735ee7..4bdcb172a31 100644
--- a/sys/arch/powerpc/include/frame.h
+++ b/sys/arch/powerpc/include/frame.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: frame.h,v 1.7 2006/01/06 18:53:05 millert Exp $ */
+/* $OpenBSD: frame.h,v 1.8 2024/11/05 21:47:00 miod Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -51,7 +51,7 @@ struct switchframe {
struct clockframe {
register_t srr1;
register_t srr0;
- int pri;
+ int unused;
int depth;
};