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>
This commit is contained in:
Elyes HAOUAS 2022-01-19 22:29:55 +01:00 committed by Martin L Roth
parent 8ef918738f
commit 6c3796beab
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ Scope (\_SB.PCI0.I2C3)
PMOF ()
}
Method (_STA, 0, Serialized) {
If (LGreater(STA,0)) {
If (STA > 0) {
Return (0x1)
}
Else {