Reef-ish: Remove extra newline after board version

This removes the extra newline character after the board version
from EC's debug output.

BUG=none
BRANCH=none
TEST=Boot Electro.

Change-Id: If6e365a7f175c7e8f2c8db5adbf1780f6715d615
Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/441265
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Daisuke Nojiri
2017-02-10 12:50:20 -08:00
committed by chrome-bot
parent bdd13c5032
commit 9985a2e388
3 changed files with 3 additions and 3 deletions

View File

@@ -1047,7 +1047,7 @@ int board_get_version(void)
}
}
CPRINTS("Board version: %d\n", version);
CPRINTS("Board version: %d", version);
return version;
}

View File

@@ -1041,7 +1041,7 @@ int board_get_version(void)
}
}
CPRINTS("Board version: %d\n", version);
CPRINTS("Board version: %d", version);
return version;
}

View File

@@ -1068,7 +1068,7 @@ int board_get_version(void)
}
}
CPRINTS("Board version: %d\n", version);
CPRINTS("Board version: %d", version);
return version;
}