soc/amd/*/acpi/mmio.asl,sb_fch.asl: change AAHB's _STA back to method
Commit 396fb3db74
("soc/amd/*/acpi/mmio.asl,sb_fch.asl: hide AAHB
device") didn't only change the visibility of the device, but also
changed the _STA method to a name. While this worked, the specification
says that _STA is supposed to be a method, so change it back to being a
method.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Id0932b2875aaf563a4dbd860bdd11a04272e3780
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75169
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
bba14fe497
commit
39a98260ff
|
@ -14,7 +14,10 @@ Device (AAHB)
|
|||
{
|
||||
Memory32Fixed (ReadWrite, ALINK_AHB_ADDRESS, 0x2000)
|
||||
})
|
||||
Name (_STA, 0xb)
|
||||
Method (_STA, 0x0, NotSerialized)
|
||||
{
|
||||
Return (0x0b)
|
||||
}
|
||||
}
|
||||
|
||||
Device (GPIO)
|
||||
|
|
|
@ -16,7 +16,10 @@ Device (AAHB)
|
|||
{
|
||||
Memory32Fixed (ReadWrite, ALINK_AHB_ADDRESS, 0x2000)
|
||||
})
|
||||
Name (_STA, 0xb)
|
||||
Method (_STA, 0x0, NotSerialized)
|
||||
{
|
||||
Return (0x0b)
|
||||
}
|
||||
}
|
||||
|
||||
Device (GPIO)
|
||||
|
|
|
@ -16,7 +16,10 @@ Device (AAHB)
|
|||
{
|
||||
Memory32Fixed (ReadWrite, ALINK_AHB_ADDRESS, 0x2000)
|
||||
})
|
||||
Name (_STA, 0xb)
|
||||
Method (_STA, 0x0, NotSerialized)
|
||||
{
|
||||
Return (0x0b)
|
||||
}
|
||||
}
|
||||
|
||||
Device (GPIO)
|
||||
|
|
|
@ -16,7 +16,10 @@ Device (AAHB)
|
|||
{
|
||||
Memory32Fixed (ReadWrite, ALINK_AHB_ADDRESS, 0x2000)
|
||||
})
|
||||
Name (_STA, 0xb)
|
||||
Method (_STA, 0x0, NotSerialized)
|
||||
{
|
||||
Return (0x0b)
|
||||
}
|
||||
}
|
||||
|
||||
Device (GPIO)
|
||||
|
|
|
@ -14,7 +14,10 @@ Device (AAHB)
|
|||
{
|
||||
Memory32Fixed (ReadWrite, ALINK_AHB_ADDRESS, 0x2000)
|
||||
})
|
||||
Name (_STA, 0xb)
|
||||
Method (_STA, 0x0, NotSerialized)
|
||||
{
|
||||
Return (0x0b)
|
||||
}
|
||||
}
|
||||
|
||||
Device (GPIO)
|
||||
|
|
|
@ -12,7 +12,10 @@ Device (AAHB)
|
|||
{
|
||||
Memory32Fixed (ReadWrite, ALINK_AHB_ADDRESS, 0x2000)
|
||||
})
|
||||
Name (_STA, 0xb)
|
||||
Method (_STA, 0x0, NotSerialized)
|
||||
{
|
||||
Return (0x0b)
|
||||
}
|
||||
}
|
||||
|
||||
Device (GPIO)
|
||||
|
|
Loading…
Reference in New Issue