mptable: realign comments with code
Change-Id: I4bc90334c7220512607cd5e777ce1f8cc595e2f0 Signed-off-by: Sven Schnelle <svens@stackframe.org> Reviewed-on: http://review.coreboot.org/1115 Tested-by: build bot (Jenkins)
This commit is contained in:
parent
2f8c4f829e
commit
69eab16ce6
|
@ -313,7 +313,6 @@ char *preamble[] = {
|
||||||
"",
|
"",
|
||||||
" smp_write_processors(mc);",
|
" smp_write_processors(mc);",
|
||||||
"",
|
"",
|
||||||
"",
|
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -809,7 +808,7 @@ static void MPConfigTableHeader(uint32_t pap)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* process all the busses */
|
/* process all the busses */
|
||||||
printf("/*Bus:\t\tBus ID\tType*/\n");
|
printf("\t/* Bus: Bus ID Type */\n");
|
||||||
for (c = count; c; c--) {
|
for (c = count; c; c--) {
|
||||||
if (readType() == 1)
|
if (readType() == 1)
|
||||||
busEntry();
|
busEntry();
|
||||||
|
@ -817,7 +816,7 @@ static void MPConfigTableHeader(uint32_t pap)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* process all the apics */
|
/* process all the apics */
|
||||||
printf("/*I/O APICs:\tAPIC ID\tVersion\tState\t\tAddress*/\n");
|
printf("\t/* I/O APICs: APIC ID Version State Address */\n");
|
||||||
for (c = count; c; c--) {
|
for (c = count; c; c--) {
|
||||||
if (readType() == 2)
|
if (readType() == 2)
|
||||||
ioApicEntry();
|
ioApicEntry();
|
||||||
|
@ -825,8 +824,7 @@ static void MPConfigTableHeader(uint32_t pap)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* process all the I/O Ints */
|
/* process all the I/O Ints */
|
||||||
printf
|
printf("\t/* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/ \n");
|
||||||
("/*I/O Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tPIN#\n*/");
|
|
||||||
for (c = count; c; c--) {
|
for (c = count; c; c--) {
|
||||||
if (readType() == 3)
|
if (readType() == 3)
|
||||||
intEntry();
|
intEntry();
|
||||||
|
@ -835,7 +833,7 @@ static void MPConfigTableHeader(uint32_t pap)
|
||||||
|
|
||||||
/* process all the Local Ints */
|
/* process all the Local Ints */
|
||||||
printf
|
printf
|
||||||
("/*Local Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tPIN#*/\n");
|
("\t/* Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */\n");
|
||||||
for (c = count; c; c--) {
|
for (c = count; c; c--) {
|
||||||
if (readType() == 4)
|
if (readType() == 4)
|
||||||
lintEntry();
|
lintEntry();
|
||||||
|
|
Loading…
Reference in New Issue