summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_modes.c
diff options
context:
space:
mode:
authorVille Syrjälä2017-11-14 19:32:54 +0100
committerVille Syrjälä2018-01-29 20:38:15 +0100
commit4f09c77b5c3b7779d6de05dc1bec501d5b4c6bcd (patch)
tree5050ad620742fddde34c632b46ea2d13ddff1174 /drivers/gpu/drm/drm_modes.c
parentdrm/modes: Fix description of DRM_MODE_TYPE_USERDEF (diff)
downloadkernel-qcow2-linux-4f09c77b5c3b7779d6de05dc1bec501d5b4c6bcd.tar.gz
kernel-qcow2-linux-4f09c77b5c3b7779d6de05dc1bec501d5b4c6bcd.tar.xz
kernel-qcow2-linux-4f09c77b5c3b7779d6de05dc1bec501d5b4c6bcd.zip
drm/modes: Kill off the oddball DRM_MODE_TYPE_CRTC_C vs. DRM_MODE_TYPE_BUILTIN handling
For some reason drm_mode_set_crtcinfo() does nothing if the mode has the DRM_MODE_TYPE_BUILTIN flag set without the other bit from DRM_MODE_TYPE_CRTC_C also set. I have zero idea what that is supposed to achieve, but since we have no users for neither flag bit let's kill this nonsense off. v2: Fix typo in commit message Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20171114183258.16976-7-ville.syrjala@linux.intel.com Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/drm_modes.c')
-rw-r--r--drivers/gpu/drm/drm_modes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c
index 34b5123ebfc0..b35324a50fdf 100644
--- a/drivers/gpu/drm/drm_modes.c
+++ b/drivers/gpu/drm/drm_modes.c
@@ -833,7 +833,7 @@ EXPORT_SYMBOL(drm_mode_get_hv_timing);
*/
void drm_mode_set_crtcinfo(struct drm_display_mode *p, int adjust_flags)
{
- if ((p == NULL) || ((p->type & DRM_MODE_TYPE_CRTC_C) == DRM_MODE_TYPE_BUILTIN))
+ if (!p)
return;
p->crtc_clock = p->clock;