HAOUAS Elyes (ehaouas@noos.fr) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16282
-gerrit
commit b0d77dff61a01ec80ed9611f6ba19faf9e8463d3 Author: Elyes HAOUAS ehaouas@noos.fr Date: Sun Aug 21 12:14:11 2016 +0200
arch/arm & arm64: Unnecessary whitespace before "\n" removed
Change-Id: Ibec78b25c0f330fc8517654761803e8abf203060 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- src/arch/arm/div0.c | 2 +- src/arch/arm64/div0.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/arch/arm/div0.c b/src/arch/arm/div0.c index ce8f42a..afd9dad 100644 --- a/src/arch/arm/div0.c +++ b/src/arch/arm/div0.c @@ -21,5 +21,5 @@ void __div0(void); // called from asm so no need for a prototype in a header /* recursion is ok here because we have no formats ... */ void __div0 (void) { - printk(BIOS_EMERG, "DIVIDE BY ZERO! continuing ... \n"); + printk(BIOS_EMERG, "DIVIDE BY ZERO! continuing ...\n"); } diff --git a/src/arch/arm64/div0.c b/src/arch/arm64/div0.c index ce8f42a..afd9dad 100644 --- a/src/arch/arm64/div0.c +++ b/src/arch/arm64/div0.c @@ -21,5 +21,5 @@ void __div0(void); // called from asm so no need for a prototype in a header /* recursion is ok here because we have no formats ... */ void __div0 (void) { - printk(BIOS_EMERG, "DIVIDE BY ZERO! continuing ... \n"); + printk(BIOS_EMERG, "DIVIDE BY ZERO! continuing ...\n"); }