aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2026-05-27 20:41:15 +0000
committerMark Johnston <markj@FreeBSD.org>2026-05-27 21:12:35 +0000
commit96256587b06cfcdbeb1789145f5e427831b3d732 (patch)
tree527bdba2a85b7f803ae3d22f00dd4d98c23b3fcb
parent0beb172898499fff51eed4df3d9284cd1094afbb (diff)
ucode: ucode_error can be defined with static
MFC after: 1 week
-rw-r--r--sys/x86/x86/ucode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/x86/ucode.c b/sys/x86/x86/ucode.c
index 2e996331dd2e..3d7008eb30f2 100644
--- a/sys/x86/x86/ucode.c
+++ b/sys/x86/x86/ucode.c
@@ -80,7 +80,7 @@ static const void *ucode_data;
static struct ucode_ops *ucode_loader;
/* Variables used for reporting success or failure. */
-enum {
+static enum {
NO_ERROR,
NO_MATCH,
VERIFICATION_FAILED,