i82830: fix debugging output and clarify bracketing

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5536 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2010-05-09 15:15:08 +00:00 committed by Stefan Reinauer
parent 14db1c0c6b
commit 29d3a92e15
1 changed files with 2 additions and 2 deletions

View File

@ -258,11 +258,11 @@ static void mbi_call(u8 subf, banner_id_t *banner_id)
if (getobj->objnum == count) {
printk(BIOS_DEBUG, "| |- len = %x\n", len);
memcpy((void *)(getobj->buffer + OBJ_OFFSET),
((char *)mbi_header) + 0x20 , (len > getobj->buflen ? getobj->buflen : len));
((char *)mbi_header) + 0x20 , (len > getobj->buflen) ? getobj->buflen : len);
getobj->banner.retsts = MSH_OK;
#ifdef DEBUG_SMI_I82830
dump(banner_id, sizeof(getobj));
dump(banner_id, sizeof(*getobj));
dump(getobj->buffer + OBJ_OFFSET, len);
#endif
break;