Update SSDT-RHUB.dsl

This commit is contained in:
Mykola Grymalyuk
2020-07-08 23:22:46 -06:00
committed by GitHub
parent 75cd0e9b71
commit 87c29dbc71

View File

@@ -9,13 +9,16 @@ DefinitionBlock ("", "SSDT", 2, "DRTNIA", "RhubOff", 0x00001000)
Scope (_SB.PCI0.XHC1.RHUB) // Full pathing to RHUB, change to yours Scope (_SB.PCI0.XHC1.RHUB) // Full pathing to RHUB, change to yours
{ {
If (_OSI ("Darwin")) Method (_STA, 0, NotSerialized)
{ {
Return (Zero) // This disables the device only in macOS If (_OSI ("Darwin"))
} {
Else Return (Zero) // This disables the device only in macOS
{ }
} Else
{
}
}
} }
} }