diff options
author | Christian Walter <christian.walter@9elements.com> | 2019-05-24 15:17:06 +0200 |
---|---|---|
committer | Philipp Deppenwiese <zaolin.daisuki@gmail.com> | 2019-05-28 09:24:39 +0000 |
commit | 3b4d0e060cd4d3384cba18404c0c309cf94f508e (patch) | |
tree | 1bf65c0dface280ba52248ea0e37ee1e7f8ad383 /src/cpu | |
parent | 07db5fcec10b825d7d3660c492abb66f2e802405 (diff) | |
download | coreboot-3b4d0e060cd4d3384cba18404c0c309cf94f508e.tar.xz |
src/cpu/x86/lapic/lapic.c: Add missing newline
Added missing new line to Info Output.
Change-Id: Ic4cd63f231de918fad7cd34724651bf8eb1c8e62
Signed-off-by: Christian Walter <christian.walter@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32987
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/x86/lapic/lapic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/x86/lapic/lapic.c b/src/cpu/x86/lapic/lapic.c index 8cd3092b24..755fbe220d 100644 --- a/src/cpu/x86/lapic/lapic.c +++ b/src/cpu/x86/lapic/lapic.c @@ -24,7 +24,7 @@ void do_lapic_init(void) * see the Intel mp1.4 spec, page A-3 */ - printk(BIOS_INFO, "Setting up local APIC..."); + printk(BIOS_INFO, "Setting up local APIC...\n"); /* Enable the local APIC */ enable_lapic(); |