diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-10-03 21:54:16 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-10-07 18:08:03 +0200 |
commit | 035df005c5b9b473c2d61601c098792a34527a52 (patch) | |
tree | 0c2afbd8f6dc4d773ee4a720a4348ba254a78104 /src/southbridge/intel/lynxpoint/acpi.c | |
parent | c44fb50185571b6bdf4febcc4cc1476a79c67ae2 (diff) | |
download | coreboot-035df005c5b9b473c2d61601c098792a34527a52.tar.xz |
src/southbridge: Remove whitespace after sizeof
Change-Id: Ic3b599d49a4c03ad8035c558b975f31cb91d253b
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16862
Tested-by: build bot (Jenkins)
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/southbridge/intel/lynxpoint/acpi.c')
-rw-r--r-- | src/southbridge/intel/lynxpoint/acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/lynxpoint/acpi.c b/src/southbridge/intel/lynxpoint/acpi.c index f91702ff5d..2a02744a69 100644 --- a/src/southbridge/intel/lynxpoint/acpi.c +++ b/src/southbridge/intel/lynxpoint/acpi.c @@ -56,7 +56,7 @@ void acpi_create_intel_hpet(acpi_hpet_t * hpet) static void acpi_create_serialio_ssdt_entry(int id, global_nvs_t *gnvs) { char sio_name[5] = {}; - snprintf(sio_name, sizeof (sio_name), "S%1uEN", id); + snprintf(sio_name, sizeof(sio_name), "S%1uEN", id); acpigen_write_name_byte(sio_name, gnvs->s0b[id] ? 1 : 0); } |