Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/x86/include IOAPIC_ID_MASK is 8 bits these days. Fi...
details: https://anonhg.NetBSD.org/src/rev/3f2b2f0d57d0
branches: trunk
changeset: 371755:3f2b2f0d57d0
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Thu Oct 06 06:51:36 2022 +0000
description:
IOAPIC_ID_MASK is 8 bits these days. Fixes PR kern/54276.
diffstat:
sys/arch/x86/include/i82093reg.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r b1b373115e9b -r 3f2b2f0d57d0 sys/arch/x86/include/i82093reg.h
--- a/sys/arch/x86/include/i82093reg.h Thu Oct 06 06:42:46 2022 +0000
+++ b/sys/arch/x86/include/i82093reg.h Thu Oct 06 06:51:36 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: i82093reg.h,v 1.6 2019/06/19 06:32:46 msaitoh Exp $ */
+/* $NetBSD: i82093reg.h,v 1.7 2022/10/06 06:51:36 msaitoh Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -60,7 +60,7 @@
#define IOAPIC_ID 0x00
#define IOAPIC_ID_SHIFT 24
-#define IOAPIC_ID_MASK 0x0f000000
+#define IOAPIC_ID_MASK 0xff000000
/* Version, and maximum interrupt pin number. */
Home |
Main Index |
Thread Index |
Old Index