fix for simple error
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1618 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -89,7 +89,7 @@ void
|
|||||||
dumpnorth(device_t north)
|
dumpnorth(device_t north)
|
||||||
{
|
{
|
||||||
uint8_t r, c;
|
uint8_t r, c;
|
||||||
for(r = 0; r < 256; r += 16) {
|
for(r = 0; ; r += 16) {
|
||||||
print_debug_hex8(r);
|
print_debug_hex8(r);
|
||||||
print_debug(":");
|
print_debug(":");
|
||||||
for(c = 0; c < 16; c++) {
|
for(c = 0; c < 16; c++) {
|
||||||
@@ -97,6 +97,8 @@ dumpnorth(device_t north)
|
|||||||
print_debug(" ");
|
print_debug(" ");
|
||||||
}
|
}
|
||||||
print_debug("\r\n");
|
print_debug("\r\n");
|
||||||
|
if (r >= 240)
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user