src: Use space after switch, while

Change-Id: I150591aa3624895c4c321101a251547dd23d1db5
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/44172
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS
2020-08-04 13:20:13 +02:00
committed by Angel Pons
parent 239272e43d
commit 6aa9d66873
5 changed files with 10 additions and 10 deletions

View File

@@ -220,7 +220,7 @@ static int find_dq_limit(const struct sysinfo *s, const u8 channel,
expected_result == FAILING ? "failing" : "succeeding", channel);
memset(pass_count, 0, sizeof(pass_count));
while(succes_mask) {
while (succes_mask) {
test_result = test_dq_aligned(s, channel);
FOR_EACH_BYTELANE(lane) {
if (((test_result >> lane) & 1) != expected_result) {
@@ -390,7 +390,7 @@ static int rt_find_dqs_limit(struct sysinfo *s, u8 channel,
FOR_EACH_BYTELANE(lane)
rt_set_dqs(channel, lane, 0, &dqs_setting[lane]);
while(status == CB_SUCCESS) {
while (status == CB_SUCCESS) {
test_result = test_dqs_aligned(s, channel);
if (test_result == (expected_result == SUCCEEDING ? 0 : 0xff))
return CB_SUCCESS;