summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeongHwaCho <joycho78@gmail.com>2017-12-15 11:18:45 +0900
committerJeongHwaCho <joycho78@gmail.com>2017-12-15 11:18:45 +0900
commit55718bf73c1289157c4859e20b05b432f530c695 (patch)
tree86bc86b49bb2013d9bfb9a54f67e786c127fa13e
parent1dad487200543c2c1d116e8b2f070fe491070432 (diff)
downloadu-boot-odroid-c1-55718bf73c1289157c4859e20b05b432f530c695.tar.gz
ODROID-C2: change the default vout to HDMI in case of auto detection fail
Change-Id: I5c8dda1c95d3b45f078591a30e5598baa23136bc
-rw-r--r--common/edid-decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/edid-decode.c b/common/edid-decode.c
index 72541b7fa4..ed72379010 100644
--- a/common/edid-decode.c
+++ b/common/edid-decode.c
@@ -2239,7 +2239,7 @@ DONE:
printf("bestmode is %s, IEEEOUI 0x%06x\n", bestmode, IEEEOUI);
/* set vout mode */
- if (IEEEOUI == 0x000c03) {
+ if ((IEEEOUI == 0x000c03) || (config == false) ) {
printf("HDMI Mode\n");
setenv("vout", "hdmi");