aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2010-09-20 22:10:51 -0400
committerBen Skeggs <bskeggs@redhat.com>2010-09-24 02:28:16 -0400
commit64d202b4d78968979c0d44306854d41f9b71626d (patch)
tree3d03f89843d235fdcb19fa403b58f775b0cc9c56 /drivers/gpu/drm/nouveau
parent0fbb114af7ea63227599460c412fb8796556a169 (diff)
drm/nouveau: correct INIT_DP_CONDITION subcondition 5
Fixes DP output on a GTX 465 board I have. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_bios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c
index 8d60bfdf6c7..7b7b1e27ed0 100644
--- a/drivers/gpu/drm/nouveau/nouveau_bios.c
+++ b/drivers/gpu/drm/nouveau/nouveau_bios.c
@@ -1222,7 +1222,7 @@ init_dp_condition(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1222 return 3; 1222 return 3;
1223 } 1223 }
1224 1224
1225 if (cond & 1) 1225 if (!(cond & 1))
1226 iexec->execute = false; 1226 iexec->execute = false;
1227 } 1227 }
1228 break; 1228 break;