x86/acpi_s3: Remove trailing dots from debug message
The dot is not needed, as it is no sentence and followed by a line break. Change-Id: I3905853eb7039f9c6d2486a77da47a4460276624 Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/30806 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
10615996cc
commit
c105d9ab3f
|
@ -33,10 +33,10 @@ static void acpi_handoff_wakeup(void)
|
|||
{
|
||||
if (acpi_slp_type < 0) {
|
||||
if (romstage_handoff_is_resume()) {
|
||||
printk(BIOS_DEBUG, "S3 Resume.\n");
|
||||
printk(BIOS_DEBUG, "S3 Resume\n");
|
||||
acpi_slp_type = ACPI_S3;
|
||||
} else {
|
||||
printk(BIOS_DEBUG, "Normal boot.\n");
|
||||
printk(BIOS_DEBUG, "Normal boot\n");
|
||||
acpi_slp_type = ACPI_S0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue