drm/nouveau/kms: fix setting of default values for dithering properties

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
Ben Skeggs 2016-04-22 09:09:41 +10:00
parent 34440ed697
commit 38bdcfc1fc

View file

@ -1276,18 +1276,18 @@ nouveau_connector_create(struct drm_device *dev, int index)
break; break;
default: default:
if (disp->dithering_mode) { if (disp->dithering_mode) {
nv_connector->dithering_mode = DITHERING_MODE_AUTO;
drm_object_attach_property(&connector->base, drm_object_attach_property(&connector->base,
disp->dithering_mode, disp->dithering_mode,
nv_connector-> nv_connector->
dithering_mode); dithering_mode);
nv_connector->dithering_mode = DITHERING_MODE_AUTO;
} }
if (disp->dithering_depth) { if (disp->dithering_depth) {
nv_connector->dithering_depth = DITHERING_DEPTH_AUTO;
drm_object_attach_property(&connector->base, drm_object_attach_property(&connector->base,
disp->dithering_depth, disp->dithering_depth,
nv_connector-> nv_connector->
dithering_depth); dithering_depth);
nv_connector->dithering_depth = DITHERING_DEPTH_AUTO;
} }
break; break;
} }