rx886ex: Fix PBIF reference.
PBIF is package and so a scalar can't be stored instead of it. What was meant is probably Index(PBIF, 0) Change-Id: Iddd18e1f165e0f48fd91124200aba5c6b4a5b4bd Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: https://review.coreboot.org/13621 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
ec730396cc
commit
764bd9789d
|
@ -144,7 +144,7 @@ Device (BAT1)
|
|||
Store ("Bad", Index(PBIF, 10))
|
||||
Store ("Bad", Index(PBIF, 11))
|
||||
Store ("Bad", Index(PBIF, 12))
|
||||
Store (1, PBIF)
|
||||
Store (1, Index(PBIF, 0))
|
||||
}
|
||||
|
||||
Method(IVBS, 0)
|
||||
|
@ -284,7 +284,7 @@ Device (BAT2)
|
|||
Store ("Bad", Index(PBIF, 10))
|
||||
Store ("Bad", Index(PBIF, 11))
|
||||
Store ("Bad", Index(PBIF, 12))
|
||||
Store (1, PBIF)
|
||||
Store (1, Index(PBIF, 0))
|
||||
}
|
||||
|
||||
Method(IVBS, 0)
|
||||
|
|
Loading…
Reference in New Issue