mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-01 05:05:57 -08:00
Fix inconsistencies with RHUB
Closes https://github.com/dortania/bugtracker/issues/101
This commit is contained in:
@@ -228,6 +228,7 @@ module.exports = {
|
|||||||
sidebarDepth: 2,
|
sidebarDepth: 2,
|
||||||
children: [
|
children: [
|
||||||
['/Universal/rhub-methods/prebuilt', 'Prebuilt'],
|
['/Universal/rhub-methods/prebuilt', 'Prebuilt'],
|
||||||
|
['/Universal/rhub-methods/ssdttime', 'SSDTTime'],
|
||||||
['/Universal/rhub-methods/manual', 'Manual'],
|
['/Universal/rhub-methods/manual', 'Manual'],
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -30,16 +30,16 @@ Now that we have our ACPI path, lets grab our SSDT and get to work:
|
|||||||
|
|
||||||
* [SSDT-RHUB.dsl](https://github.com/dortania/Getting-Started-With-ACPI/blob/master/extra-files/decompiled/SSDT-RHUB.dsl)
|
* [SSDT-RHUB.dsl](https://github.com/dortania/Getting-Started-With-ACPI/blob/master/extra-files/decompiled/SSDT-RHUB.dsl)
|
||||||
|
|
||||||
By default, this uses `PCI0.XHC_.RHUB` for the pathing. you'll want to rename accordingly.
|
By default, this uses `PCI0.XHC1.RHUB` for the pathing. you'll want to rename accordingly.
|
||||||
|
|
||||||
Following the example from above, we'll be renaming it to `PCI0.XHC1.RHUB`:
|
Following the example from above, we'll be renaming it to `PCI0.XHC.RHUB`:
|
||||||
|
|
||||||
**Before**:
|
**Before**:
|
||||||
|
|
||||||
```
|
```
|
||||||
External (_SB_.PCI0.XHC_.RHUB, DeviceObj) <- Rename this
|
External (_SB_.PCI0.XHC1.RHUB, DeviceObj) <- Rename this
|
||||||
|
|
||||||
Scope (_SB.PCI0.XHC_.RHUB) <- Rename this
|
Scope (_SB.PCI0.XHC1.RHUB) <- Rename this
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
@@ -49,9 +49,9 @@ Following the example pathing we found, the SSDT should look something like this
|
|||||||
**After**:
|
**After**:
|
||||||
|
|
||||||
```
|
```
|
||||||
External (_SB.PCI0.XHC1.RHUB, DeviceObj) <- Renamed
|
External (_SB.PCI0.XHC.RHUB, DeviceObj) <- Renamed
|
||||||
|
|
||||||
Scope (_SB.PCI0.XHC1.RHUB) <- Renamed
|
Scope (_SB.PCI0.XHC.RHUB) <- Renamed
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -4,10 +4,10 @@
|
|||||||
*/
|
*/
|
||||||
DefinitionBlock ("", "SSDT", 2, "DRTNIA", "RhubOff", 0x00001000)
|
DefinitionBlock ("", "SSDT", 2, "DRTNIA", "RhubOff", 0x00001000)
|
||||||
{
|
{
|
||||||
External (_SB_.PCI0.XHC1.RHUB, DeviceObj) // Full pathing to RHUB, change to yours
|
External (_SB_.PCI0.XHC.RHUB, DeviceObj) // Full pathing to RHUB, change to yours
|
||||||
|
|
||||||
|
|
||||||
Scope (_SB.PCI0.XHC1.RHUB) // Full pathing to RHUB, change to yours
|
Scope (_SB.PCI0.XHC.RHUB) // Full pathing to RHUB, change to yours
|
||||||
{
|
{
|
||||||
Method (_STA, 0, NotSerialized)
|
Method (_STA, 0, NotSerialized)
|
||||||
{
|
{
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 501 KiB After Width: | Height: | Size: 661 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 502 KiB After Width: | Height: | Size: 663 KiB |
Reference in New Issue
Block a user