diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2026-03-04 20:19:48 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2026-03-04 20:19:48 +0000 |
| commit | 00ff89c1e0c8d92fe644ea97b521ceb66d46e170 (patch) | |
| tree | dd91abfca0b62786c0e70b2747718bc1090db2b7 | |
| parent | 858f53dd43ecb84cf2597229e9dbda2f242d9dd6 (diff) | |
acpi: Treat ACPI_IVAR_FLAGS as a global IVAR
The ACPI bus uses the flags IVAR for any device with a _PRW method
including devices such as PCI bridges/devices that are not direct
children of acpi0.
Reported by: ngie
Reviewed by: ngie
Fixes: 0bb867e9f565 ("acpi: Split ACPI IVARs into global and private sets")
Differential Revision: https://reviews.freebsd.org/D55561
| -rw-r--r-- | sys/dev/acpica/acpivar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpica/acpivar.h b/sys/dev/acpica/acpivar.h index b86c6c1aa3c6..1099e7a25b0a 100644 --- a/sys/dev/acpica/acpivar.h +++ b/sys/dev/acpica/acpivar.h @@ -279,9 +279,9 @@ extern int acpi_override_isa_irq_polarity; */ enum { ACPI_IVAR_PRIVATE = 20, - ACPI_IVAR_FLAGS, ACPI_IVAR_DOMAIN, - ACPI_IVAR_HANDLE = BUS_IVARS_ACPI + ACPI_IVAR_HANDLE = BUS_IVARS_ACPI, + ACPI_IVAR_FLAGS }; /* |
