Skip to content

Commit 8bd0b49

Browse files
Nick Bofferdingdcrowell77
Nick Bofferding
authored andcommitted
Add "skip mode setup" flag to python I2C FFDC parser
This commit fixes a bug in the I2C FFDC parser where the "skip mode setup" field was skipped during parsing, causing all subsequent parsed fields to report incorrect results. Change-Id: I16c40b7bea8c83881f0254c6dddce295c11a9408 CQ: SW546689 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/129099 Reviewed-by: Deborah L McLemore <[email protected]> Reviewed-by: Roland Veloz <[email protected]> Tested-by: Jenkins OP Build CI <[email protected]> Tested-by: Jenkins Server <[email protected]> Tested-by: Jenkins Combined Simics CI <[email protected]> Tested-by: FSP CI Jenkins <[email protected]> Tested-by: Jenkins OP HW <[email protected]> Tested-by: Hostboot CI <[email protected]> Reviewed-by: Daniel M Crowell <[email protected]>
1 parent 6fcda17 commit 8bd0b49

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/usr/i2c/plugins/ebmc/b0700.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# OpenPOWER HostBoot Project
77
#
8-
# Contributors Listed Below - COPYRIGHT 2020
8+
# Contributors Listed Below - COPYRIGHT 2020,2022
99
# [+] International Business Machines Corp.
1010
#
1111
#
@@ -68,6 +68,7 @@ def UdParserI2CParms(subType, ver, data):
6868
subd['Port'], i=memConcat(data, i, i+1)
6969
subd['Engine'], i=memConcat(data, i, i+1)
7070
subd['Device Address'], i=memConcat(data, i, i+8)
71+
subd['Flag: skip mode setup'], i=memConcat(data, i, i+1)
7172
subd['Flag: with stop'], i=memConcat(data, i, i+1)
7273
subd['Flag: read not write'], i=memConcat(data, i, i+1)
7374
subd['Bus Speed (kbits/sec)'], i=memConcat(data, i, i+8)

0 commit comments

Comments
 (0)