projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
296db6a
)
UPSTREAM: drm/edid: Clear the old cea_rev when there's no CEA extension in the new...
author
Ville Syrjälä
<ville.syrjala@linux.intel.com>
Wed, 28 Sep 2016 13:51:40 +0000
(16:51 +0300)
committer
Zheng Yang
<zhengyang@rock-chips.com>
Tue, 20 Jun 2017 09:22:50 +0000
(17:22 +0800)
It's not a good idea to leave stale cea_rev in the drm_display_info. The
current EDID might not even have a CEA ext block in which case we'd end
up leaving the stale value in place.
Change-Id: I57e2bd4a92ddcab8c8f345c5e7e251cfa1fbd231
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Acked-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link:
http://patchwork.freedesktop.org/patch/msgid/1475070703-6435-8-git-send-email-ville.syrjala@linux.intel.com
Signed-off-by: Zheng Yang <zhengyang@rock-chips.com>
(cherry picked from commit
011acce2859ad50b7a923cad4a726220b5f24455
)
drivers/gpu/drm/drm_edid.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/drm_edid.c
b/drivers/gpu/drm/drm_edid.c
index 39d2a9818a9a3f5ad442a882df938a8cd6300d37..306e67c9f82d5dee95cdbbd9b9d1a9fd331842ba 100644
(file)
--- a/
drivers/gpu/drm/drm_edid.c
+++ b/
drivers/gpu/drm/drm_edid.c
@@
-4190,6
+4190,7
@@
static void drm_add_display_info(struct drm_connector *connector,
/* driver figures it out in this case */
info->bpc = 0;
info->color_formats = 0;
+ info->cea_rev = 0;
if (edid->revision < 3)
return;