Skip to content

Commit

Permalink
drm/nouveau/hdmi: use correct hdmi regs for nvaa/nvac
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Ben Skeggs committed Apr 30, 2012
1 parent 5206b52 commit 0ed4bb9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/gpu/drm/nouveau/nouveau_hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ static bool
hdmi_sor(struct drm_encoder *encoder)
{
struct drm_nouveau_private *dev_priv = encoder->dev->dev_private;
if (dev_priv->chipset < 0xa3)
if (dev_priv->chipset < 0xa3 ||
dev_priv->chipset == 0xaa ||
dev_priv->chipset == 0xac)
return false;
return true;
}
Expand Down

0 comments on commit 0ed4bb9

Please sign in to comment.