diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-02-01 09:27:41 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2018-04-29 17:05:35 +0000 |
commit | 9a033af1371a217ef15a5edb086d9cd67b719210 (patch) | |
tree | 65a7683de69d44b060389a7f58a40ef8182f7fec /src | |
parent | db8e8f39d3b27b22f2d7b65ae72bef826ba054d4 (diff) | |
download | coreboot-9a033af1371a217ef15a5edb086d9cd67b719210.tar.xz |
mainboard/msi/ms9282: Fix coding style
Change-Id: I6fb31238afff56ff16cf58104f8bed8e9832544c
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/23535
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/msi/ms9282/mptable.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/mainboard/msi/ms9282/mptable.c b/src/mainboard/msi/ms9282/mptable.c index 4619737cf3..c53fe780a5 100644 --- a/src/mainboard/msi/ms9282/mptable.c +++ b/src/mainboard/msi/ms9282/mptable.c @@ -99,17 +99,16 @@ static void *smp_write_config_table(void *v) //NIC2 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+9)<<2)|0, m->apicid_mcp55, 0x15); // 21 - for(j = 7; j >= 2; j--) { - if(!m->bus_mcp55[j]) continue; - for(i = 0; i < 4; i++) { + for (j = 7; j >= 2; j--) { + if (!m->bus_mcp55[j]) + continue; + for (i = 0; i < 4; i++) smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[j], (0x00 << 2)|i, m->apicid_mcp55, 0x10 + (2+j+i+4-sbdn%4)%4); - } } - for(j = 0; j < 1; j++) - for(i = 0; i < 4; i++) { + for (j = 0; j < 1; j++) + for (i = 0; i < 4; i++) smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[1], ((0x04+j)<<2)|i, m->apicid_mcp55, 0x10 + (2+i+j)%4); - } /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/ mptable_lintsrc(mc, bus_isa); |