[coreboot] [commit] r5441 - trunk/src/northbridge/intel/i82830

repository service svn at coreboot.org
Thu Apr 15 10:26:31 CEST 2010


Author: stepan
Date: Thu Apr 15 10:26:30 2010
New Revision: 5441
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5441

Log:
the dump function assumed that the mbi data comes right after the header.
Which is not (always) the case.

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

Modified:
   trunk/src/northbridge/intel/i82830/i82830_smihandler.c

Modified: trunk/src/northbridge/intel/i82830/i82830_smihandler.c
==============================================================================
--- trunk/src/northbridge/intel/i82830/i82830_smihandler.c	Thu Apr 15 07:19:29 2010	(r5440)
+++ trunk/src/northbridge/intel/i82830/i82830_smihandler.c	Thu Apr 15 10:26:30 2010	(r5441)
@@ -262,7 +262,8 @@
 
 				getobj->banner.retsts = MSH_OK;
 #ifdef DEBUG_SMI_I82830
-				dump(banner_id, sizeof(getobj) + len);
+				dump(banner_id, sizeof(getobj));
+				dump(getobj->buffer + OBJ_OFFSET, len);
 #endif
 				break;
 			}




More information about the coreboot mailing list