From c88e6bb81d622d22898ffaa30f6230b6fd87dd0c Mon Sep 17 00:00:00 2001 From: Alexander Boettcher Date: Tue, 1 Aug 2023 13:34:37 +0200 Subject: [PATCH] gpu/intel: fix disable invocation in fw_disable Erroneous enable was used --- repos/os/src/drivers/gpu/intel/mmio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/os/src/drivers/gpu/intel/mmio.h b/repos/os/src/drivers/gpu/intel/mmio.h index c7a68ac1c9..8f1304fc1f 100644 --- a/repos/os/src/drivers/gpu/intel/mmio.h +++ b/repos/os/src/drivers/gpu/intel/mmio.h @@ -1284,7 +1284,7 @@ class Igd::Mmio : public Platform::Device::Mmio _fw_disable(); } void _fw_disable_gt() { - _fw_enable(); } + _fw_disable(); } void _fw_disable_render() { _fw_disable(); }