intel/bd82x6x: Skip unknown MBP.
Allow skipping unknown MBP rather than bailing out. Change-Id: I9a54858c37d73e320de77aea5a05ab5dcf67cd69 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/5976 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
This commit is contained in:
parent
209238755a
commit
afc8d98769
|
@ -901,9 +901,11 @@ static int intel_me_read_mbp(me_bios_payload *mbp_data)
|
||||||
SET_UP_COPY(mfsintegrity);
|
SET_UP_COPY(mfsintegrity);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
printk(BIOS_ERR, "ME: unknown mbp item id 0x%x!!!\n",
|
printk(BIOS_ERR, "ME: unknown mbp item id 0x%x! Skipping\n",
|
||||||
mbp_item_id);
|
mbp_item_id);
|
||||||
return -1;
|
while(copy_size--)
|
||||||
|
read_cb();
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (buffer_room != copy_size) {
|
if (buffer_room != copy_size) {
|
||||||
|
|
Loading…
Reference in New Issue