CVSROOT: /cvs Module name: src Changes by: dera...@cvs.openbsd.org 2023/06/06 22:46:09
Modified files: sys/arch/amd64/amd64: acpi_machdep.c Log message: upon resume, fpureset() was being called prematurely (before cpu_init, which does not matter today, but will matter a lot in near future). But actually it isn't needed at all, cpu_init() does it again. So remove the call. ok guenther