device/pciexp_device.c: Terminate CLK PM message with newline
Change-Id: I746e2cc47a83cb04fd404851d3644b8341761022 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/20544 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
e16f1d7810
commit
330c46b963
|
@ -132,7 +132,7 @@ static void pciexp_enable_clock_power_pm(device_t endp, unsigned endp_cap)
|
|||
u16 lnkctl;
|
||||
endp_ca = pci_read_config32(endp, endp_cap + PCI_EXP_LNKCAP);
|
||||
if ((endp_ca & PCI_EXP_CLK_PM) == 0) {
|
||||
printk(BIOS_INFO, "PCIE CLK PM is not supported by endpoint");
|
||||
printk(BIOS_INFO, "PCIE CLK PM is not supported by endpoint\n");
|
||||
return;
|
||||
}
|
||||
lnkctl = pci_read_config16(endp, endp_cap + PCI_EXP_LNKCTL);
|
||||
|
|
Loading…
Reference in New Issue