soc/intel/common/block/pmc/pmclib: Use same loglevel as print_num_status_bits

Use same log level as print_num_status_bits to make sure the
status bits are properly prefix and the newline is added.

Change-Id: Ib33798eec7cba601d0d49646c5fc429de5268417
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65715
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
Patrick Rudolph 2022-07-08 08:40:57 +02:00 committed by Felix Held
parent 0feffd109f
commit 3c4750166f
1 changed files with 2 additions and 2 deletions

View File

@ -244,9 +244,9 @@ static uint16_t print_pm1_status(uint16_t pm1_sts)
if (!pm1_sts) if (!pm1_sts)
return 0; return 0;
printk(BIOS_SPEW, "PM1_STS: "); printk(BIOS_DEBUG, "PM1_STS: ");
print_num_status_bits(ARRAY_SIZE(pm1_sts_bits), pm1_sts, pm1_sts_bits); print_num_status_bits(ARRAY_SIZE(pm1_sts_bits), pm1_sts, pm1_sts_bits);
printk(BIOS_SPEW, "\n"); printk(BIOS_DEBUG, "\n");
return pm1_sts; return pm1_sts;
} }