aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-07-30 19:19:54 -0400
committerTom Rini <trini@konsulko.com>2019-07-30 19:19:54 -0400
commita239147fa2c0c3fe849ccaffd72c4dc4cae2be71 (patch)
tree2675e87a98bdd76e337e8cafe2b6f9e660b1f72e /common
parent476a3143d7c1a94b795a4804ab894893f490cf33 (diff)
parent42a7ce27d97022f4abbba142dfa00d1450512f0a (diff)
downloadu-boot-a239147fa2c0c3fe849ccaffd72c4dc4cae2be71.zip
u-boot-a239147fa2c0c3fe849ccaffd72c4dc4cae2be71.tar.gz
u-boot-a239147fa2c0c3fe849ccaffd72c4dc4cae2be71.tar.bz2
Merge tag 'video-for-2019.10-rc1' of https://gitlab.denx.de/u-boot/custodians/u-boot-video
- fix EDID mode filtering - extend mxc_ipuv3_fb to enable backlight/display - include fb_base in global_data for DM_VIDEO - show frame buffer address via board info as used to be with legacy VIDEO support
Diffstat (limited to 'common')
-rw-r--r--common/edid.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/edid.c b/common/edid.c
index f244d26..f99f42d 100644
--- a/common/edid.c
+++ b/common/edid.c
@@ -202,7 +202,9 @@ int edid_get_timing_validate(u8 *buf, int buf_size,
timing);
else
timing_done = true;
- break;
+
+ if (timing_done)
+ break;
}
}
if (!timing_done)