Commit 9054ae1c authored by Alex Deucher's avatar Alex Deucher

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: default avatarAlex Deucher <alexander.deucher@amd.com>
parent dcb85290
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment