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>
diff --git a/src/arch/x86/acpi.c b/src/arch/x86/acpi.c
index edb6835..53c4135 100644
--- a/src/arch/x86/acpi.c
+++ b/src/arch/x86/acpi.c
@@ -870,7 +870,7 @@
 	}
 
 	if (dsdt_file->length > dsdt_size
-	    || dsdt_file->length < sizeof (acpi_header_t)
+	    || dsdt_file->length < sizeof(acpi_header_t)
 	    || memcmp(dsdt_file->signature, "DSDT", 4) != 0) {
 		printk(BIOS_ERR, "Invalid DSDT file, skipping ACPI tables\n");
 		return current;
@@ -880,7 +880,7 @@
 				     CBFS_TYPE_RAW, &slic_size);
 	if (slic_file
 	    && (slic_file->length > slic_size
-		|| slic_file->length < sizeof (acpi_header_t)
+		|| slic_file->length < sizeof(acpi_header_t)
 		|| memcmp(slic_file->signature, "SLIC", 4) != 0)) {
 		slic_file = 0;
 	}