aboutsummaryrefslogtreecommitdiff
path: root/src/lib/selfboot.c
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-09 14:07:18 -0800
committerMartin Roth <martinroth@google.com>2017-03-12 19:20:21 +0100
commit38768c328abfde3d32a5d9a9496594d72940c195 (patch)
tree424e94c43430e7b20cb10909b4cfe2347747ac9b /src/lib/selfboot.c
parentb6ee0f9d920fa9cfb19f5340608bf0df72f16468 (diff)
src/lib: Remove space between function name and (
Fix the following warning detected by checkpatch.pl: WARNING: space prohibited between function name and open parenthesis '(' TEST=Build and run on Galileo Gen2 Change-Id: I8f3c79302dc5eb1861ffb245617a27addf8653ef Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18731 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/lib/selfboot.c')
-rw-r--r--src/lib/selfboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/selfboot.c b/src/lib/selfboot.c
index f9f41d46df..86f77f72df 100644
--- a/src/lib/selfboot.c
+++ b/src/lib/selfboot.c
@@ -135,7 +135,7 @@ static int relocate_segment(unsigned long buffer, struct segment *seg)
return 0;
if (!arch_supports_bounce_buffer())
- die ("bounce buffer not supported");
+ die("bounce buffer not supported");
start = seg->s_dstaddr;
middle = start + seg->s_filesz;