soc/intel/denverton_ns: Fix logging level

Level should match that used in print_num_status_bits().

Change-Id: I1beb65e4c141e195dd59eaa2bf55fff6e7dc910d
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61144
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Jeff Daly <jeffd@silicom-usa.com>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
Kyösti Mälkki 2021-12-19 17:13:55 +02:00 committed by Felix Held
parent 6e4b81c20a
commit 69d92deb6c
1 changed files with 2 additions and 2 deletions

View File

@ -123,9 +123,9 @@ static uint16_t print_pm1_status(uint16_t pm1_sts)
if (!pm1_sts)
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);
printk(BIOS_SPEW, "\n");
printk(BIOS_DEBUG, "\n");
return pm1_sts;
}