aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/acpigen.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2016-10-03 22:11:07 +0200
committerMartin Roth <martinroth@google.com>2016-10-07 18:08:48 +0200
commit7d87e767b612fc39bfe9cc7dbd1e714dbf6597cf (patch)
tree2de3cf7be8d739136e04ed4bfbb199d2e760cb55 /src/arch/x86/acpigen.c
parent90ba1897441bd93ac1450805f84be8cbb0c9cebe (diff)
src/arch: Remove whitespace after sizeof
Change-Id: Ia2fc3d5ea88d61ba7c4a1daebfe74a24948c8f6e Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16865 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/arch/x86/acpigen.c')
-rw-r--r--src/arch/x86/acpigen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/acpigen.c b/src/arch/x86/acpigen.c
index 2d626ab93f..00f8bd01d9 100644
--- a/src/arch/x86/acpigen.c
+++ b/src/arch/x86/acpigen.c
@@ -348,7 +348,7 @@ void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
acpigen_emit_byte(0x83);
acpigen_write_len_f();
- snprintf(pscope, sizeof (pscope),
+ snprintf(pscope, sizeof(pscope),
"\\_PR.CP%02d", (unsigned int) cpuindex);
acpigen_emit_namestring(pscope);
acpigen_emit_byte(cpuindex);