Richard Spiegel has uploaded a new patch set (#2). ( https://review.coreboot.org/27929 )
Change subject: lib/edid.c: Avoid static analysis error for unused value ......................................................................
lib/edid.c: Avoid static analysis error for unused value
Within procedure cea_hdmi_block, the variable "b" is used as an index into a buffer of EDID bytes. Each time it's used, it's incremented, but the last increment is not used and is causing a static analysis error. Add a printk at the end, using variable "b", to avoid the static analysis error.
BUG=b:112253891 TEST=Build and boot grunt.
Change-Id: Ibd0b4a21bf82fcc46a627bc75564a850b7374989 Signed-off-by: Richard Spiegel richard.spiegel@silverbackltd.com --- M src/lib/edid.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/27929/2