diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2022-01-19 22:29:55 +0100 |
---|---|---|
committer | Martin L Roth <martinroth@google.com> | 2022-04-24 22:28:48 +0000 |
commit | 6c3796beabaace369fd1389494f4a62b40025525 (patch) | |
tree | 8fa1f96090adf3ce95574f1d2982950cd09f383e /src | |
parent | 8ef918738fd2a892224558f74a3bd996f73be7e7 (diff) |
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>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/poppy/variants/atlas/include/variant/acpi/cam0.asl | 2 |
1 files changed, 1 insertions, 1 deletions
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 b973200ffe..4809f26df9 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 @@ Scope (\_SB.PCI0.I2C3) PMOF () } Method (_STA, 0, Serialized) { - If (LGreater(STA,0)) { + If (STA > 0) { Return (0x1) } Else { |