aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon/r600_hdmi.c
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2013-04-18 09:42:13 -0400
committerAlex Deucher <alexander.deucher@amd.com>2013-04-22 10:39:15 -0400
commit9054ae1ce33f08315616999c742e6656b9967724 (patch)
treecc7abf8ac02340461d143f0e1d6b2fcc7e6a18e2 /drivers/gpu/drm/radeon/r600_hdmi.c
parentdrm/radeon: fix hdmi mode enable on RS600/RS690/RS740 (diff)
downloadlinux-dev-9054ae1ce33f08315616999c742e6656b9967724.tar.xz
linux-dev-9054ae1ce33f08315616999c742e6656b9967724.zip
drm/radeon: disable audio format interrupts on Evergreen
The audio format change interrupts are an aid in debugging, but not required for operation. Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/r600_hdmi.c')
-rw-r--r--drivers/gpu/drm/radeon/r600_hdmi.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/r600_hdmi.c b/drivers/gpu/drm/radeon/r600_hdmi.c
index e419b98b0c47..95397b215701 100644
--- a/drivers/gpu/drm/radeon/r600_hdmi.c
+++ b/drivers/gpu/drm/radeon/r600_hdmi.c
@@ -461,7 +461,9 @@ void r600_hdmi_enable(struct drm_encoder *encoder)
if (rdev->irq.installed) {
/* if irq is available use it */
- radeon_irq_kms_enable_afmt(rdev, dig->afmt->id);
+ /* XXX: shouldn't need this on any asics. Double check DCE2/3 */
+ if (!ASIC_IS_DCE4(rdev))
+ radeon_irq_kms_enable_afmt(rdev, dig->afmt->id);
}
dig->afmt->enabled = true;