Paul Menzel (paulepanter@users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14175
-gerrit
commit 73b50b7812ab2571bf3e0a05757944f9c9dfea6e Author: Paul Menzel paulepanter@users.sourceforge.net Date: Sun Mar 27 22:24:08 2016 +0200
nvidia/ck804/sata: Remove space before newline in debug output
In the board status repository, there is trailing whitespace in the coreboot log of the board ASUS KFSN4-DRE.
``` SATA S SATA P ```
Remove it, as it’s unnecessary.
Change-Id: I5c505eb7c734dca3fa18235e2bc0bc82b5b50b16 Signed-off-by: Paul Menzel paulepanter@users.sourceforge.net --- src/southbridge/nvidia/ck804/sata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/southbridge/nvidia/ck804/sata.c b/src/southbridge/nvidia/ck804/sata.c index 8df09bc..eeebf89 100644 --- a/src/southbridge/nvidia/ck804/sata.c +++ b/src/southbridge/nvidia/ck804/sata.c @@ -107,7 +107,7 @@ static void sata_init(struct device *dev) if (conf->sata0_enable) { /* Enable primary SATA interface. */ dword |= (1 << 1); - printk(BIOS_DEBUG, "SATA P \n"); + printk(BIOS_DEBUG, "SATA P\n"); } #if 0 /* Write back */