Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 89570eeb authored by Thomas Wood's avatar Thomas Wood Committed by Dave Airlie
Browse files

drm: fix the addition of the side-by-side (half) flag for extra 3D modes



Ensure the side-by-side (half) flag is added to any existing flags when
adding modes from 3D_Structure_ALL.

Signed-off-by: default avatarThomas Wood <thomas.wood@intel.com>
Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 7d14b95f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2701,7 +2701,7 @@ static int add_3d_struct_modes(struct drm_connector *connector, u16 structure,
	if (structure & (1 << 8)) {
		newmode = drm_mode_duplicate(dev, &edid_cea_modes[cea_mode]);
		if (newmode) {
			newmode->flags = DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
			newmode->flags |= DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
			drm_mode_probed_add(connector, newmode);
			modes++;
		}