drivers/aspeed/common: Reduce severity of EDID not found
log message
Servers often run headless, so a missing EDID isn't a problem. However, we still need to initialize a framebuffer for the BMC's KVM function. Reduce the log level to BIOS_INFO to avoid confusion. Change-Id: Ice17bf6fdda0ce34e686dbf8f3a1fa92ba869d7c Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45234 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
parent
e5aa5ae1ba
commit
0f651650f3
1 changed files with 5 additions and 1 deletions
|
@ -96,7 +96,11 @@ static int ast_select_mode(struct drm_connector *connector,
|
|||
ast_software_i2c_read(ast, raw);
|
||||
|
||||
if (decode_edid(raw, sizeof(raw), edid) != EDID_CONFORMANT) {
|
||||
dev_err(dev->pdev, "Failed to decode EDID\n");
|
||||
/*
|
||||
* Servers often run headless, so a missing EDID is not an error.
|
||||
* We still need to initialize a framebuffer for KVM, though.
|
||||
*/
|
||||
dev_info(dev->pdev, "Failed to decode EDID\n");
|
||||
printk(BIOS_DEBUG, "Assuming VGA for KVM\n");
|
||||
|
||||
memset(edid, 0, sizeof(*edid));
|
||||
|
|
Loading…
Reference in a new issue