soc/amd/block/psp/psp: raise log level of PSP failure messages

If the PSP didn't like a command this should be at least a warning on
the console and not just a debug message.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: If7e5f6320631cca86813e98f82b8c0c21bf18af1
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50414
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Felix Held 2021-02-09 02:07:17 +01:00
parent 6564842857
commit 35b3cc9b6d
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ void psp_print_cmd_status(int cmd_status, struct mbox_buffer_header *header)
printk(BIOS_DEBUG, "buffer status=0x%x ", rd_resp_sts(header));
if (cmd_status)
printk(BIOS_DEBUG, "%s\n", status_to_string(cmd_status));
printk(BIOS_WARNING, "%s\n", status_to_string(cmd_status));
else
printk(BIOS_DEBUG, "OK\n");
}