diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-10-02 10:09:11 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-10-07 18:06:14 +0200 |
commit | f2fcf22d225e6d8d4a497dba6bda24f98d525735 (patch) | |
tree | 74d85f19988eee410b1b507d7c91bb05600c08f6 /src/mainboard/google/jecht/lan.c | |
parent | 028200f75f6d8d0f947d68f41ca10fbfe05f9283 (diff) | |
download | coreboot-f2fcf22d225e6d8d4a497dba6bda24f98d525735.tar.xz |
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/jecht/lan.c')
-rw-r--r-- | src/mainboard/google/jecht/lan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/jecht/lan.c b/src/mainboard/google/jecht/lan.c index 651c8e6990..bb6ff6e016 100644 --- a/src/mainboard/google/jecht/lan.c +++ b/src/mainboard/google/jecht/lan.c @@ -31,7 +31,8 @@ static unsigned int search(char *p, u8 *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; } |