diff options
author | Dave Airlie <airlied@redhat.com> | 2010-02-05 01:57:42 (GMT) |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-02-05 01:57:42 (GMT) |
commit | 23fff28a9b0529869bffef8aab0d3f350dd3b5a4 (patch) | |
tree | ddc909bb0f06d9ef5b2373f6947057a7e2fc0d91 /drivers/gpu | |
parent | 655efd3dc92cd0d37292157178d33deb0430aeaa (diff) | |
download | linux-fsl-qoriq-23fff28a9b0529869bffef8aab0d3f350dd3b5a4.tar.xz |
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>
Diffstat (limited to 'drivers/gpu')
-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 99e2c38..b1c1d34 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; |