diff options
author | Adam Jackson <ajax@redhat.com> | 2010-03-29 21:43:18 +0000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-04-06 10:40:16 +1000 |
commit | 61e57a8d72f2336faf39b5d940215cf085e01e6e (patch) | |
tree | 8c9c6713b4f1ff4c610771860c6cca411cb28cfc /include | |
parent | 95beb690170e6ce918fe53c73a0fcc7cf64d704a (diff) | |
download | linux-61e57a8d72f2336faf39b5d940215cf085e01e6e.tar.gz linux-61e57a8d72f2336faf39b5d940215cf085e01e6e.tar.bz2 linux-61e57a8d72f2336faf39b5d940215cf085e01e6e.zip |
drm/edid: Fix secondary block fetch.
This makes fetching the second EDID block on HDMI monitors actually
work. DDC can't transfer more than 128 bytes at a time. Also,
rearrange the code so the pure DDC bits are separate from block parse.
Signed-off-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/drm_crtc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 1347524a8e30..f74523a299c9 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -666,8 +666,6 @@ extern void drm_fb_release(struct drm_file *file_priv); extern int drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group); extern struct edid *drm_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter); -extern int drm_do_probe_ddc_edid(struct i2c_adapter *adapter, - unsigned char *buf, int len); extern int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid); extern void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode); extern void drm_mode_remove(struct drm_connector *connector, struct drm_display_mode *mode); |