Skip to content

Commit

Permalink
drm/nouveau: correct INIT_DP_CONDITION subcondition 5
Browse files Browse the repository at this point in the history
Fixes DP output on a GTX 465 board I have.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Ben Skeggs committed Sep 24, 2010
1 parent 0fbb114 commit 64d202b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/nouveau/nouveau_bios.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 64d202b

Please sign in to comment.