diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2017-04-30 08:28:05 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-05-03 16:16:43 +0200 |
commit | 8c5884e8d739ed0271da051034f5c4f475a00b55 (patch) | |
tree | 6b120a66bed866c6ba8cd0ad0d20e8e7cf2bb896 /src/soc/nvidia/tegra124/dp.c | |
parent | a459a8a145be0413d540d6cb62f9a1b6ead3175a (diff) | |
download | coreboot-8c5884e8d739ed0271da051034f5c4f475a00b55.tar.xz |
lib/edid.c: Differentiate between absent and non-conformant EDID
Change-Id: Id90aa210ff72092c4ab638a7bafb82bd11889bdc
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/19502
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/soc/nvidia/tegra124/dp.c')
-rw-r--r-- | src/soc/nvidia/tegra124/dp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/nvidia/tegra124/dp.c b/src/soc/nvidia/tegra124/dp.c index a308f68fe1..0132369073 100644 --- a/src/soc/nvidia/tegra124/dp.c +++ b/src/soc/nvidia/tegra124/dp.c @@ -1322,7 +1322,7 @@ static void tegra_dp_update_config(struct tegra_dc_dp_data *dp, return; } - if (decode_edid(buf, sizeof(buf), &edid)) { + if (decode_edid(buf, sizeof(buf), &edid) != EDID_CONFORMANT) { printk(BIOS_ERR, "%s: Failed to decode EDID. Use defaults.\n", __func__); return; |