diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2010-09-21 06:10:51 +0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2010-09-24 10:28:16 +0400 |
commit | 64d202b4d78968979c0d44306854d41f9b71626d (patch) | |
tree | 3d03f89843d235fdcb19fa403b58f775b0cc9c56 /drivers/gpu/drm/nouveau/nouveau_bios.c | |
parent | 0fbb114af7ea63227599460c412fb8796556a169 (diff) | |
download | linux-64d202b4d78968979c0d44306854d41f9b71626d.tar.xz |
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/nouveau_bios.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bios.c | 2 |
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 8d60bfdf6c74..7b7b1e27ed0b 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) return 3; } - if (cond & 1) + if (!(cond & 1)) iexec->execute = false; } break; |