Docs: Only patch PRBM for Darwin/macOS

This commit is contained in:
Lorys89 2020-10-19 16:18:51 +02:00 committed by GitHub
parent 7adaaa15ee
commit a8cb5123d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,12 @@ DefinitionBlock ("", "SSDT", 2, "ACDT", "UNC", 0x00000000)
{
Method (_INI, 0, NotSerialized)
{
PRBM = 0
// In most cases this patch does benefit all operating systems,
// yet on select pre-Windows 10 it may cause issues.
// Remove If (_OSI ("Darwin")) in case you have none.
If (_OSI ("Darwin")) {
PRBM = 0
}
}
}
}