diff options
author | Maarten Maathuis <madman2003@gmail.com> | 2008-07-20 15:40:40 +0200 |
---|---|---|
committer | Maarten Maathuis <madman2003@gmail.com> | 2008-07-20 15:40:40 +0200 |
commit | 685bca02fe6b7406bb157a1a4e0f147b47ba28f8 (patch) | |
tree | b43a7644a3c59f374c7a758e39078ad7620d0770 /linux-core/nv50_connector.c | |
parent | e51cd78cac24df15e32e23d8db73614524e6ff0d (diff) |
NV50: delay changing gpu<->non-gpu scaling modes until next modeset
Diffstat (limited to 'linux-core/nv50_connector.c')
-rw-r--r-- | linux-core/nv50_connector.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-core/nv50_connector.c b/linux-core/nv50_connector.c index be133de3..309f450c 100644 --- a/linux-core/nv50_connector.c +++ b/linux-core/nv50_connector.c @@ -185,9 +185,9 @@ int nv50_connector_create(struct drm_device *dev, int bus, int i2c_index, int ty /* some reasonable defaults */ if (type == CONNECTOR_DVI_D || type == CONNECTOR_DVI_I || type == CONNECTOR_LVDS) - connector->scaling_mode = SCALE_FULLSCREEN; + connector->requested_scaling_mode = SCALE_FULLSCREEN; else - connector->scaling_mode = SCALE_NON_GPU; + connector->requested_scaling_mode = SCALE_NON_GPU; connector->use_dithering = false; |