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:
Vladimir Serbinenko 2016-02-08 00:02:37 +01:00 committed by Martin Roth
parent ec730396cc
commit 764bd9789d
1 changed files with 2 additions and 2 deletions

View File

@ -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)