summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/butterfly/mainboard.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2016-10-02 10:09:11 +0200
committerMartin Roth <martinroth@google.com>2016-10-07 18:06:14 +0200
commitf2fcf22d225e6d8d4a497dba6bda24f98d525735 (patch)
tree74d85f19988eee410b1b507d7c91bb05600c08f6 /src/mainboard/google/butterfly/mainboard.c
parent028200f75f6d8d0f947d68f41ca10fbfe05f9283 (diff)
downloadcoreboot-f2fcf22d225e6d8d4a497dba6bda24f98d525735.tar.gz
coreboot-f2fcf22d225e6d8d4a497dba6bda24f98d525735.tar.bz2
coreboot-f2fcf22d225e6d8d4a497dba6bda24f98d525735.zip
src/mainboard: Remove unnecessary whitespace
Change-Id: I35cb7e08d5233aa5a3dbb4631ab2ee4dc9596f98 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16849 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/google/butterfly/mainboard.c')
-rw-r--r--src/mainboard/google/butterfly/mainboard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/butterfly/mainboard.c b/src/mainboard/google/butterfly/mainboard.c
index 2c5170d27d64..a100981df59e 100644
--- a/src/mainboard/google/butterfly/mainboard.c
+++ b/src/mainboard/google/butterfly/mainboard.c
@@ -43,7 +43,8 @@ static unsigned int search(char *p, char *a, unsigned int lengthp,
/* Searching */
for (j = 0; j <= lengtha - lengthp; j++) {
- for (i = 0; i < lengthp && p[i] == a[i + j]; i++) ;
+ for (i = 0; i < lengthp && p[i] == a[i + j]; i++)
+ ;
if (i >= lengthp)
return j;
}