Martin L Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/61232 )
Change subject: mb/google/poppy: Convert 'If (LGreater(STA,0))' to 'If (STA > 0)' ......................................................................
mb/google/poppy: Convert 'If (LGreater(STA,0))' to 'If (STA > 0)'
Change-Id: I088e514271b785e59907b0271eb89727ae1e7c05 Signed-off-by: Elyes Haouas ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/61232 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Martin L Roth martinroth@google.com --- M src/mainboard/google/poppy/variants/atlas/include/variant/acpi/cam0.asl 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Martin L Roth: Looks good to me, approved
diff --git a/src/mainboard/google/poppy/variants/atlas/include/variant/acpi/cam0.asl b/src/mainboard/google/poppy/variants/atlas/include/variant/acpi/cam0.asl index b973200..4809f26 100644 --- a/src/mainboard/google/poppy/variants/atlas/include/variant/acpi/cam0.asl +++ b/src/mainboard/google/poppy/variants/atlas/include/variant/acpi/cam0.asl @@ -12,7 +12,7 @@ PMOF () } Method (_STA, 0, Serialized) { - If (LGreater(STA,0)) { + If (STA > 0) { Return (0x1) } Else {