payloads/libpayload/arch/x86/rom_media.c: Change log level message

Move a warning message from BIOS_INFO to BIOS_WARNING log level.

Change-Id: I4210901a183b54e47fa62a6146ce754c544aab2c
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71157
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
Elyes Haouas 2022-12-21 08:16:51 +01:00
parent 16c2ea3bcb
commit 9a1d01f48e
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ int init_x86rom_cbfs_media(struct cbfs_media *media) {
media->context = (void*)romsize;
#if CONFIG(LP_ROM_SIZE)
if (CONFIG_LP_ROM_SIZE != romsize)
printk(BIOS_INFO, "Warning: rom size unmatch (%d/%d)\n",
printk(BIOS_WARNING, "rom size unmatch (%d/%d)\n",
CONFIG_LP_ROM_SIZE, romsize);
#endif
}