projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01db363
)
drm/nouveau: Don't poll LVDS outputs.
author
Francisco Jerez
<
[email protected]
>
Sat, 23 Oct 2010 21:12:37 +0000
(23:12 +0200)
committer
Ben Skeggs
<
[email protected]
>
Thu, 18 Nov 2010 04:38:43 +0000
(14:38 +1000)
Reported-by: Xavier Chantry <
[email protected]
>
Signed-off-by: Francisco Jerez <
[email protected]
>
Signed-off-by: Ben Skeggs <
[email protected]
>
drivers/gpu/drm/nouveau/nouveau_connector.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/nouveau/nouveau_connector.c
b/drivers/gpu/drm/nouveau/nouveau_connector.c
index 9ec2b8a813446a3f836b99cd0014fbb8c23f79c6..1dd52dbfad46041951c7dc9389cfc7933710e1a6 100644
(file)
--- a/
drivers/gpu/drm/nouveau/nouveau_connector.c
+++ b/
drivers/gpu/drm/nouveau/nouveau_connector.c
@@
-888,10
+888,12
@@
nouveau_connector_create(struct drm_device *dev, int index)
nv_connector->use_dithering ?
DRM_MODE_DITHERING_ON : DRM_MODE_DITHERING_OFF);
- if (dev_priv->card_type >= NV_50)
- connector->polled = DRM_CONNECTOR_POLL_HPD;
- else
- connector->polled = DRM_CONNECTOR_POLL_CONNECT;
+ if (dcb->type != DCB_CONNECTOR_LVDS) {
+ if (dev_priv->card_type >= NV_50)
+ connector->polled = DRM_CONNECTOR_POLL_HPD;
+ else
+ connector->polled = DRM_CONNECTOR_POLL_CONNECT;
+ }
break;
}