CVSROOT: /cvs Module name: src Changes by: mlar...@cvs.openbsd.org 2019/10/09 22:09:04
Modified files: sys/dev/acpi : dsdt.c Log message: Make reading past the end of an AML array not a panic. Several machines have broken AML which reads past the end the end of an array. Previously this was an aml_die/panic. acpica just warns on such accesses, so this diff makes us do the same. ok kettenis, jcs, deraadt