src/lib: Add space before (

Fix the following error detected by checkpatch.pl:

ERROR: space required before the open parenthesis '('

TEST=Build and run on Galileo Gen2

Change-Id: I8953fecbe75136ff989c9e3cf6c5e155dcee3c3b
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18698
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Lee Leahy
2017-03-08 18:02:24 -08:00
parent 2f919ec476
commit 45fde705b6
15 changed files with 31 additions and 31 deletions

View File

@ -25,7 +25,7 @@ int primitive_memtest(uintptr_t base, uintptr_t size)
printk(BIOS_SPEW, "Performing primitive memory test.\n");
printk(BIOS_SPEW, "DRAM start: 0x%08x, DRAM size: 0x%08x", base, size);
for(i = base; i < base + (size - 1) - sizeof(p); i += sizeof(p)) {
for (i = base; i < base + (size - 1) - sizeof(p); i += sizeof(p)) {
if (i % 0x100000 == 0) {
if ((i % 0x800000) == 0)
printk(BIOS_SPEW, "\n");
@ -38,7 +38,7 @@ int primitive_memtest(uintptr_t base, uintptr_t size)
}
printk(BIOS_SPEW, "\n\nReading back DRAM content");
for(i = base; i < base + (size - 1) - sizeof(p); i += sizeof(p)) {
for (i = base; i < base + (size - 1) - sizeof(p); i += sizeof(p)) {
if (i % 0x100000 == 0) {
if ((i % 0x800000) == 0)
printk(BIOS_SPEW, "\n");