summaryrefslogtreecommitdiff
path: root/src/lib/edid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/edid.c')
-rw-r--r--src/lib/edid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/edid.c b/src/lib/edid.c
index 5925759a4c..d56099b9f9 100644
--- a/src/lib/edid.c
+++ b/src/lib/edid.c
@@ -1141,14 +1141,14 @@ int decode_edid(unsigned char *edid, int size, struct edid *out)
memset(out, 0, sizeof(*out));
if (!edid) {
- printk(BIOS_SPEW, "No EDID found\n");
+ printk(BIOS_ERR, "No EDID found\n");
return EDID_ABSENT;
}
dump_breakdown(edid);
if (memcmp(edid, "\x00\xFF\xFF\xFF\xFF\xFF\xFF\x00", 8)) {
- printk(BIOS_SPEW, "No header found\n");
+ printk(BIOS_ERR, "No header found\n");
return EDID_ABSENT;
}