diff options
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv04_crtc.c')
| -rw-r--r-- | drivers/gpu/drm/nouveau/nv04_crtc.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nv04_crtc.c b/drivers/gpu/drm/nouveau/nv04_crtc.c index eba687f1099..1c20c08ce67 100644 --- a/drivers/gpu/drm/nouveau/nv04_crtc.c +++ b/drivers/gpu/drm/nouveau/nv04_crtc.c @@ -157,6 +157,7 @@ nv_crtc_dpms(struct drm_crtc *crtc, int mode)  {  	struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);  	struct drm_device *dev = crtc->dev; +	struct drm_connector *connector;  	unsigned char seq1 = 0, crtc17 = 0;  	unsigned char crtc1A; @@ -211,6 +212,10 @@ nv_crtc_dpms(struct drm_crtc *crtc, int mode)  	NVVgaSeqReset(dev, nv_crtc->index, false);  	NVWriteVgaCrtc(dev, nv_crtc->index, NV_CIO_CRE_RPC1_INDEX, crtc1A); + +	/* Update connector polling modes */ +	list_for_each_entry(connector, &dev->mode_config.connector_list, head) +		nouveau_connector_set_polling(connector);  }  static bool  |