From dd7cc976459f0664f39f98e5d90148f496bfdaad Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Sun, 2 May 2021 13:56:32 -0600 Subject: [PATCH] Fix comment --- Resources/Build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Build.py b/Resources/Build.py index 392a139bf..3cf504320 100644 --- a/Resources/Build.py +++ b/Resources/Build.py @@ -144,7 +144,7 @@ class BuildOpenCore: nvme_vendor = self.hexswap(binascii.hexlify(i["vendor-id"]).decode()[:4]) nvme_device = self.hexswap(binascii.hexlify(i["device-id"]).decode()[:4]) nvme_aspm = i["pci-aspm-default"] - # Disable Bit 1 (L0), enable Bit 2 (L1) + # Disable Bit 0 (L0s), enable Bit 1 (L1) nvme_aspm = (nvme_aspm & (~3)) | 2 print(f'- Found 3rd Party NVMe SSD ({x}): {nvme_vendor}:{nvme_device}')