diff options
author | Dave Airlie <airlied@redhat.com> | 2010-02-05 11:57:42 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-02-05 11:57:42 +1000 |
commit | 23fff28a9b0529869bffef8aab0d3f350dd3b5a4 (patch) | |
tree | ddc909bb0f06d9ef5b2373f6947057a7e2fc0d91 | |
parent | 655efd3dc92cd0d37292157178d33deb0430aeaa (diff) |
drm/radeon/kms: disable HDMI audio for now on rv710/rv730
Support isn't correct yet and we are getting green tinges on the
displays.
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r-- | drivers/gpu/drm/radeon/r600_audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/r600_audio.c b/drivers/gpu/drm/radeon/r600_audio.c index 99e2c3891a7..b1c1d343345 100644 --- a/drivers/gpu/drm/radeon/r600_audio.c +++ b/drivers/gpu/drm/radeon/r600_audio.c @@ -35,7 +35,7 @@ */ static int r600_audio_chipset_supported(struct radeon_device *rdev) { - return rdev->family >= CHIP_R600 + return (rdev->family >= CHIP_R600 && rdev->family < CHIP_RV710) || rdev->family == CHIP_RS600 || rdev->family == CHIP_RS690 || rdev->family == CHIP_RS740; |