diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2016-03-27 22:24:08 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2016-03-29 00:08:43 +0200 |
commit | 169956db9d1ad1f7751d57595a459e9e1b782957 (patch) | |
tree | 3b66cdd83a016975ce1d931a4574649ca0366bd2 | |
parent | e2e0057ee786d0b4d5ce7b71a6dc9210fc52ae0f (diff) |
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>
Reviewed-on: https://review.coreboot.org/14175
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Jonathan A. Kollasch <jakllsch@kollasch.net>
-rw-r--r-- | src/southbridge/nvidia/ck804/sata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/nvidia/ck804/sata.c b/src/southbridge/nvidia/ck804/sata.c index 8df09bcb76..eeebf897de 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 */ |